mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
15 lines
152 B
PHP
15 lines
152 B
PHP
--TEST--
|
|
SPL: FixedArray: Testing setSize() with NULL
|
|
--FILE--
|
|
<?php
|
|
|
|
$a = new SplFixedArray(100);
|
|
|
|
$a->setSize(NULL);
|
|
|
|
print "ok\n";
|
|
|
|
?>
|
|
--EXPECT--
|
|
ok
|