Arquivos
hhvm/hphp/test/zend/bad/ext-spl/SplArray_fromArray.php
T
Paul Tarjan a4fc1c7bbd import zend spl tests
Lots of these tests spewed files
2013-04-25 00:50:11 -07:00

10 linhas
170 B
PHP

<?php
$array = array(PHP_INT_MAX => 'foo');
$splArray = new SplFixedArray();
try {
$splArray->fromArray($array);
} catch (Exception $e) {
echo $e->getMessage();
}
?>