Arquivos
hhvm/hphp/test/quick/GetElem.php
T
ptarjan 503f75d08b Rename test directories
These names don't make sense now that we run both suites the same
way.
2013-04-17 09:06:51 -07:00

19 linhas
192 B
PHP

<?php
error_reporting(0);
$a = array(0, "b", "c");
print $a[0];
$a[0] = 1;
print $a[0];
print $a[0]++;
print $a[0];
print "\n";
$a[3]++;
print_r($a);
$b = null;
print $b[0]++;
print "\n";