[ create a new paste ] login | about

Link: http://codepad.org/V3gVtKrM    [ raw code | output | fork ]

PHP, pasted on Jun 26:
1
2
3
4
5
6
<?php
    $colors = array('apple' => 'red',
                    'cheese' => 'white',
                    'leaf' => 'green');
    print_r($colors);
?>


Output:
1
2
3
4
5
6
Array
(
    [apple] => red
    [cheese] => white
    [leaf] => green
)


Create a new paste based on this one


Comments: