1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/manual/codes/Coding standards - Coding Style - Arrays.php

13 lines
292 B
PHP
Raw Normal View History

2006-10-01 17:58:19 +04:00
<?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');