Coding standards - Coding Style - Arrays.php 292 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
<?php
$sampleArray = array('Doctrine', 'ORM', 1, 2, 3);


$sampleArray = array(1, 2, 3, 
                     $a, $b, $c,                     
                     56.44, $d, 500);


$sampleArray = array('first'  => 'firstValue',
                     'second' => 'secondValue');