Arrays (PHP): verschil tussen versies

Uit De Vliegende Brigade
Naar navigatie springen Naar zoeken springen
Regel 25: Regel 25:
  
 
* https://www.php.net/manual/en/function.print-r.php
 
* https://www.php.net/manual/en/function.print-r.php
 +
* https://stackoverflow.com/questions/34666506/how-to-print-part-of-an-array-php

Versie van 23 apr 2019 11:57

<?php
$a = array ('a' => 'apple', 'b' => 'banana', 'c' => array ('x', 'y', 'z'));
print_r ($a);
?>

Output:

Array
(
    [a] => apple
    [b] => banana
    [c] => Array
        (
            [0] => x
            [1] => y
            [2] => z
        )
)

Bronnen