a4fc1c7bbd
Lots of these tests spewed files
10 linhas
170 B
PHP
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();
|
|
}
|
|
?>
|