Array
(
[0] => 5
[1] => 3
[2] => 10
[3] => 1
)
Warning: Use of undefined constant index - assumed 'index' (this will throw an Error in a future version of PHP) in /w/nguyan/php/funkce-pole.php on line 20
Vypis pole ve funkci:
Array
(
[0] => 5
[1] => 3
[2] => 10
[3] => 1
[index] => 20
)
Vypis pole z programu
Array
(
[0] => 5
[1] => 3
[2] => 10
[3] => 1
[index] => 20
)
Hodnota byla nalezena na indexu 2
Array
(
[0] => 5
[1] => 3
[2] => 15
[3] => 1
[index] => 20
)