mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
9 lines
190 B
PHP
9 lines
190 B
PHP
--TEST--
|
|
SplFixedArray::toArray with empty array
|
|
--CREDITS--
|
|
Gabriel Caruso (carusogabriel34@gmail.com)
|
|
--FILE--
|
|
<?php var_dump((new SplFixedArray())->toArray()); ?>
|
|
--EXPECT--
|
|
array(0) {
|
|
}
|