Arquivos
hhvm/hphp/test/zend/good/ext-spl/SplFixedArray__construct_param_float.php
T
parent5446 61ec6703fc Added missing PHP SPL classes
Added PHP implementations for PHP SPL classes that are currently missing from HHVM. These include:

- SplDoublyLinkedList
- SplQueue and SplStack
- SplFixedArray
- SplHeap, SplMinHeap, and SplMaxHeap
- SplPriorityQueue
- SplTempFileObject

Closes #807
2013-06-21 11:21:43 -07:00

7 linhas
72 B
PHP

<?php
$array = new SplFixedArray( 3.141 );
echo $array->getSize();
?>