Arquivos
hhvm/hphp/test/vm/setelemloc2.php
T
smith 0562656c5b Rename some tests to avoid collisions on case-insensitive filesystems.
Avoids headaches if you clone our repo or the OSS repo on a Mac.
2013-03-05 22:28:41 -08:00

11 linhas
167 B
PHP

<?php
$keys = array(null, true, false, 0, 100, 0.0, 1238.93498);
foreach ($keys as $key) {
$a = array();
$a[$key] = 123;
var_dump($a);
var_dump($a[$key]);
}