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

16 linhas
229 B
PHP

<?php
function main($str) {
$arr = array();
for ($i = 0; $i < 3; ++$i) {
$str[2] = (string)$i;
$arr[] = $str;
}
var_dump($arr);
}
$a = array('hello there' => 0);
foreach ($a as $key => $value) {
main($key);
}