61ec6703fc
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
7 linhas
72 B
PHP
7 linhas
72 B
PHP
<?php
|
|
|
|
$array = new SplFixedArray( 3.141 );
|
|
|
|
echo $array->getSize();
|
|
|
|
?>
|