Arquivos
hhvm/hphp/test/quick/ReadElem.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

20 linhas
319 B
PHP

<?php
error_reporting(0);
$a = array(10, 20, 30);
print $a[0] . "\n";
print $a[1] . "\n";
print $a[2] . "\n";
print $a[3];# . "\n";
print $a["0"] . "\n";
print $a["x"];# . "\n";
$s = "abc";
print $s[0] . "\n";
print $s[1] . "\n";
print $s[2] . "\n";
print $s[3];# . "\n";
print $s["0"] . "\n";
print $s["x"] . "\n";