mirror of
https://github.com/php/php-src.git
synced 2025-01-10 21:14:37 +08:00
14 lines
212 B
PHP
14 lines
212 B
PHP
--TEST--
|
|
SplFixedArray::__construct() with float passed as parameter.
|
|
--CREDITS--
|
|
PHPNW Test Fest 2009 - Jordan Hatch
|
|
--FILE--
|
|
<?php
|
|
|
|
$array = new SplFixedArray( 3.141 );
|
|
|
|
echo $array->getSize();
|
|
|
|
?>
|
|
--EXPECT--
|
|
3
|