3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * Object hashing tests. */ $sos = new SplObjectStorage(); $usage = "php %s INTEGER \t - Run the SPLObjectStorage vs. Array test with INTEGER size.\n"; $docs = array(); $iterations = 100000; //100000; echo "Count of DOMDocuments: {$iterations}" . PHP_EOL. PHP_EOL; for ($i = 0; $i < $iterations; ++$i) { $doc = new DOMDocument(); //$doc = new stdClass(); $docs[] = $doc; } $start = $finis = 0; $mem_empty = memory_get_usage(); // Load the SplObjectStorage $start = microtime(TRUE); foreach ($docs as $d) { $sos->attach($d); } $finis = microtime(TRUE); $time_to_fill = $finis - $start; // Check membership on the object storage $start = microtime(true); foreach ($docs as $d) { $sos->contains($d); } $finis = microtime(true); $time_to_check = $finis - $start; $mem_spl = memory_get_usage(); $mem_used = $mem_spl - $mem_empty; printf("SplObjectStorage:\nTime to fill: %0.12f. [s]\nTime to check: %0.12f. [s]\nMemory: %d [MB]\n\n", $time_to_fill, $time_to_check, $mem_used/1024/1024); unset($sos); $mem_empty = memory_get_usage(); // Test arrays: $start = microtime(TRUE); $arr = new SplFixedArray($iterations); // Load the array $_i = 0; foreach ($docs as $d) { $arr[$_i] = $d; $_i++; } $finis = microtime(TRUE); $time_to_fill = $finis - $start; // Check membership on the array $start = microtime(FALSE); $_i = 0; foreach ($docs as $d) { isset($arr[$_i]); $_i++; } $finis = microtime(FALSE); $time_to_check = $finis - $start; $mem_arr = memory_get_usage(); $mem_used = $mem_arr - $mem_empty; printf("SplFixedArray:\nTime to fill: %0.12f. [s]\nTime to check: %0.12f. [s]\nMemory: %d [MB]\n\n", $time_to_fill, $time_to_check, $mem_used/1024/1024); $mem_empty = memory_get_usage(); // Test arrays: $start = microtime(TRUE); $arr = array(); $_i =0; // Load the array foreach ($docs as $d) { $arr[$_i] = $d; $_i++; } $finis = microtime(TRUE); $time_to_fill = $finis - $start; // Check membership on the array $start = microtime(FALSE); $_i =0; foreach ($docs as $d) { isset($arr[$_i]); $_i++; } $finis = microtime(FALSE); $time_to_check = $finis - $start; $mem_arr = memory_get_usage(); $mem_used = $mem_arr - $mem_empty; printf("Arrays:\nTime to fill: %0.12f. [s]\nTime to check: %0.12f. [s]\nMemory: %d [MB]\n\n", $time_to_fill, $time_to_check, $mem_used/1024/1024); ?>
Output for 7.3.12
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.033854007721. [s] Time to check: 0.045905113220. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.014291048050. [s] Time to check: 0.007300000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.010183811188. [s] Time to check: 0.005986000000. [s] Memory: 2 [MB]
Output for 7.3.11
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.021598100662. [s] Time to check: 0.026561021805. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.011946916580. [s] Time to check: 0.004789000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.008491992950. [s] Time to check: 0.004302000000. [s] Memory: 2 [MB]
Output for 7.3.10
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.017470121384. [s] Time to check: 0.016957998276. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.006479978561. [s] Time to check: 0.003908000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.005609989166. [s] Time to check: 0.003221000000. [s] Memory: 2 [MB]
Output for 7.3.9
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.021133184433. [s] Time to check: 0.024188995361. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.007616043091. [s] Time to check: 0.004470000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.006814956665. [s] Time to check: 0.004036000000. [s] Memory: 2 [MB]
Output for 7.3.8
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.019704103470. [s] Time to check: 0.018522024155. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.007372856140. [s] Time to check: 0.004444000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.006295919418. [s] Time to check: 0.003682000000. [s] Memory: 2 [MB]
Output for 7.3.7
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.029747009277. [s] Time to check: 0.021984100342. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.007915973663. [s] Time to check: 0.004052000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.008944988251. [s] Time to check: 0.005154000000. [s] Memory: 2 [MB]
Output for 7.3.6
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.018076896667. [s] Time to check: 0.017676115036. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.006516933441. [s] Time to check: 0.003974000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.005532026291. [s] Time to check: 0.003442000000. [s] Memory: 2 [MB]
Output for 7.3.5
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.018526077271. [s] Time to check: 0.019773006439. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.008244037628. [s] Time to check: 0.004356000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.006325006485. [s] Time to check: 0.003478000000. [s] Memory: 2 [MB]
Output for 7.3.4
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.019286870956. [s] Time to check: 0.022600173950. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.008756875992. [s] Time to check: 0.004110000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.006962060928. [s] Time to check: 0.003529000000. [s] Memory: 2 [MB]
Output for 7.3.3
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.018682956696. [s] Time to check: 0.016855955124. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.006671190262. [s] Time to check: 0.004042000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.005841970444. [s] Time to check: 0.003447000000. [s] Memory: 2 [MB]
Output for 7.3.2
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.018913984299. [s] Time to check: 0.018021821976. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.007936000824. [s] Time to check: 0.004059000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.007212877274. [s] Time to check: 0.003690000000. [s] Memory: 2 [MB]
Output for 7.3.1
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.020663022995. [s] Time to check: 0.018549919128. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.007097959518. [s] Time to check: 0.003962000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.005546808243. [s] Time to check: 0.003382000000. [s] Memory: 2 [MB]
Output for 7.3.0
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.016770839691. [s] Time to check: 0.016684055328. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.007538795471. [s] Time to check: 0.003941000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.006896972656. [s] Time to check: 0.003274000000. [s] Memory: 2 [MB]
Output for 7.2.24
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.085736989975. [s] Time to check: 0.067682027817. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.006623983383. [s] Time to check: 0.006408000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.011162996292. [s] Time to check: 0.006292000000. [s] Memory: 2 [MB]
Output for 7.2.23
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.040055990219. [s] Time to check: 0.047925949097. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.006862163544. [s] Time to check: 0.006800000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.012274026871. [s] Time to check: 0.006502000000. [s] Memory: 2 [MB]
Output for 7.2.22
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.048840999603. [s] Time to check: 0.061310052872. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.006721973419. [s] Time to check: 0.006590000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.011491060257. [s] Time to check: 0.006385000000. [s] Memory: 2 [MB]
Output for 7.2.21
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.042188882828. [s] Time to check: 0.061108112335. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.009572982788. [s] Time to check: 0.010147000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.016829013824. [s] Time to check: 0.009446000000. [s] Memory: 2 [MB]
Output for 7.2.20
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.048495054245. [s] Time to check: 0.055583000183. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.007307052612. [s] Time to check: 0.007135000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.011873960495. [s] Time to check: 0.006951000000. [s] Memory: 2 [MB]
Output for 7.2.19
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.037497997284. [s] Time to check: 0.043872117996. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.006555795670. [s] Time to check: 0.006486000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.011430978775. [s] Time to check: 0.006448000000. [s] Memory: 2 [MB]
Output for 7.2.18
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.045907020569. [s] Time to check: 0.055435895920. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.006829023361. [s] Time to check: 0.006543000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.011476993561. [s] Time to check: 0.006451000000. [s] Memory: 2 [MB]
Output for 7.2.17
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.048423051834. [s] Time to check: 0.051872968674. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.006716012955. [s] Time to check: 0.006675000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.010919094086. [s] Time to check: 0.006093000000. [s] Memory: 2 [MB]
Output for 7.2.16
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.043633222580. [s] Time to check: 0.048411846161. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.007079124451. [s] Time to check: 0.006859000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.012656927109. [s] Time to check: 0.006962000000. [s] Memory: 2 [MB]
Output for 7.2.15
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.044058084488. [s] Time to check: 0.045285940170. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.007250070572. [s] Time to check: 0.006273000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.009665012360. [s] Time to check: 0.006415000000. [s] Memory: 2 [MB]
Output for 7.2.14
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.040822029114. [s] Time to check: 0.049394130707. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.007389068604. [s] Time to check: 0.006896000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.011163949966. [s] Time to check: 0.006670000000. [s] Memory: 2 [MB]
Output for 7.2.13
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.043888807297. [s] Time to check: 0.051450967789. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.007322072983. [s] Time to check: 0.006699000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.012661933899. [s] Time to check: 0.006623000000. [s] Memory: 2 [MB]
Output for 7.2.12
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.044683933258. [s] Time to check: 0.055274009705. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.006999969482. [s] Time to check: 0.006409000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.011476993561. [s] Time to check: 0.006366000000. [s] Memory: 2 [MB]
Output for 7.2.11
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.050536870956. [s] Time to check: 0.056147813797. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.006692171097. [s] Time to check: 0.006797000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.011522054672. [s] Time to check: 0.006822000000. [s] Memory: 2 [MB]
Output for 7.2.10
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.073507785797. [s] Time to check: 0.075126886368. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.010770082474. [s] Time to check: 0.007500000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.012364864349. [s] Time to check: 0.006778000000. [s] Memory: 2 [MB]
Output for 7.2.9
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.067368984222. [s] Time to check: 0.075658798218. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.008211851120. [s] Time to check: 0.006335000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.011754035950. [s] Time to check: 0.006179000000. [s] Memory: 2 [MB]
Output for 7.2.8
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.039700031281. [s] Time to check: 0.048738956451. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.006048917770. [s] Time to check: 0.006711000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.010037899017. [s] Time to check: 0.006269000000. [s] Memory: 2 [MB]
Output for 7.2.7
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.044409036636. [s] Time to check: 0.047466993332. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.006184101105. [s] Time to check: 0.006490000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.011174917221. [s] Time to check: 0.006169000000. [s] Memory: 2 [MB]
Output for 7.2.6
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.044817924500. [s] Time to check: 0.045087814331. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.006827116013. [s] Time to check: 0.006574000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.010364055634. [s] Time to check: 0.005996000000. [s] Memory: 2 [MB]
Output for 7.2.5
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.044528961182. [s] Time to check: 0.048694133759. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.007249116898. [s] Time to check: 0.006411000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.011966943741. [s] Time to check: 0.006121000000. [s] Memory: 2 [MB]
Output for 7.2.4
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.041902065277. [s] Time to check: 0.053819179535. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.007373094559. [s] Time to check: 0.006814000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.011845827103. [s] Time to check: 0.006438000000. [s] Memory: 2 [MB]
Output for 7.2.3
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.042520046234. [s] Time to check: 0.046823978424. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.006794929504. [s] Time to check: 0.006358000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.009871959686. [s] Time to check: 0.006021000000. [s] Memory: 2 [MB]
Output for 7.2.2
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.039411067963. [s] Time to check: 0.042546033859. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.005874872208. [s] Time to check: 0.006385000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.011035919189. [s] Time to check: 0.005885000000. [s] Memory: 2 [MB]
Output for 7.2.1
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.041752815247. [s] Time to check: 0.048661947250. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.007312059402. [s] Time to check: 0.006778000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.012130975723. [s] Time to check: 0.006443000000. [s] Memory: 2 [MB]
Output for 7.2.0
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.038063049316. [s] Time to check: 0.044816017151. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.006655931473. [s] Time to check: 0.006233000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.011237859726. [s] Time to check: 0.005967000000. [s] Memory: 2 [MB]
Output for 7.1.33
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.076817989349. [s] Time to check: 0.061509132385. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.010094165802. [s] Time to check: 0.009211000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.013295173645. [s] Time to check: 0.008653000000. [s] Memory: 2 [MB]
Output for 7.1.32
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.047689199448. [s] Time to check: 0.052672863007. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.010052919388. [s] Time to check: 0.009150000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.015290021896. [s] Time to check: 0.008740000000. [s] Memory: 2 [MB]
Output for 7.1.31
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.054257869720. [s] Time to check: 0.054726123810. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.010106086731. [s] Time to check: 0.009215000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.016410112381. [s] Time to check: 0.009216000000. [s] Memory: 2 [MB]
Output for 7.1.30
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.044663906097. [s] Time to check: 0.051910161972. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.009447813034. [s] Time to check: 0.008724000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.014979124069. [s] Time to check: 0.008859000000. [s] Memory: 2 [MB]
Output for 7.1.29
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.046782016754. [s] Time to check: 0.055413961411. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.009072065353. [s] Time to check: 0.009137000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.014841079712. [s] Time to check: 0.008933000000. [s] Memory: 2 [MB]
Output for 7.1.28
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.044078111649. [s] Time to check: 0.051954984665. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.008910894394. [s] Time to check: 0.008869000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.013640880585. [s] Time to check: 0.008645000000. [s] Memory: 2 [MB]
Output for 7.1.27
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.044737100601. [s] Time to check: 0.053663969040. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.010062932968. [s] Time to check: 0.008917000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.015296936035. [s] Time to check: 0.008550000000. [s] Memory: 2 [MB]
Output for 7.1.26
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.046790122986. [s] Time to check: 0.051101922989. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.009870052338. [s] Time to check: 0.009016000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.013798952103. [s] Time to check: 0.008980000000. [s] Memory: 2 [MB]
Output for 7.1.25
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.049027919769. [s] Time to check: 0.072865962982. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.009278059006. [s] Time to check: 0.009276000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.018869161606. [s] Time to check: 0.012577000000. [s] Memory: 2 [MB]
Output for 7.1.7
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.029567956924. [s] Time to check: 0.042047977448. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.005207061768. [s] Time to check: 0.004722000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.008555173874. [s] Time to check: 0.004632000000. [s] Memory: 2 [MB]
Output for 7.1.6
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.042099952698. [s] Time to check: 0.049823045731. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.005568981171. [s] Time to check: 0.004896000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.009009838104. [s] Time to check: 0.005212000000. [s] Memory: 2 [MB]
Output for 7.1.5
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.036272048950. [s] Time to check: 0.048530101776. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.005797863007. [s] Time to check: 0.004975000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.009017944336. [s] Time to check: 0.004793000000. [s] Memory: 2 [MB]
Output for 7.1.0
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.039436817169. [s] Time to check: 0.052628040314. [s] Memory: 10 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 86 Notice: A non well formed numeric value encountered in /in/tqttt on line 86 SplFixedArray: Time to fill: 0.006268978119. [s] Time to check: 0.005902000000. [s] Memory: 1 [MB] Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Notice: A non well formed numeric value encountered in /in/tqttt on line 128 Arrays: Time to fill: 0.009654045105. [s] Time to check: 0.005398000000. [s] Memory: 2 [MB]
Output for 7.0.20
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.309726953506. [s] Time to check: 0.065390825272. [s] Memory: 14 [MB] SplFixedArray: Time to fill: 0.029844999313. [s] Time to check: 0.006239000000. [s] Memory: 1 [MB] Arrays: Time to fill: 0.302465915680. [s] Time to check: 0.005007000000. [s] Memory: 2 [MB]
Output for 7.0.14
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.042896986008. [s] Time to check: 0.058053016663. [s] Memory: 14 [MB] SplFixedArray: Time to fill: 0.005657196045. [s] Time to check: 0.004935000000. [s] Memory: 1 [MB] Arrays: Time to fill: 0.008543014526. [s] Time to check: 0.004604000000. [s] Memory: 2 [MB]
Output for 7.0.8
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.250071048737. [s] Time to check: 0.052101135254. [s] Memory: 14 [MB] SplFixedArray: Time to fill: 0.011200904846. [s] Time to check: 0.005746000000. [s] Memory: 1 [MB] Arrays: Time to fill: 0.059834003448. [s] Time to check: 0.004435000000. [s] Memory: 2 [MB]
Output for 7.0.7
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.257028102875. [s] Time to check: 0.043130874634. [s] Memory: 14 [MB] SplFixedArray: Time to fill: 0.032701015472. [s] Time to check: 0.003941000000. [s] Memory: 1 [MB] Arrays: Time to fill: 0.063066005707. [s] Time to check: 0.003782000000. [s] Memory: 2 [MB]
Output for 7.0.6
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.295156955719. [s] Time to check: 0.050475120544. [s] Memory: 14 [MB] SplFixedArray: Time to fill: 0.036867141724. [s] Time to check: 0.004353000000. [s] Memory: 1 [MB] Arrays: Time to fill: 0.070719957352. [s] Time to check: 0.004220000000. [s] Memory: 2 [MB]
Output for 7.0.5
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.344525814056. [s] Time to check: 0.060672998428. [s] Memory: 14 [MB] SplFixedArray: Time to fill: 0.041799068451. [s] Time to check: 0.005163000000. [s] Memory: 1 [MB] Arrays: Time to fill: 0.071904897690. [s] Time to check: 0.004124000000. [s] Memory: 2 [MB]
Output for 7.0.4
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.150735855103. [s] Time to check: 0.047725200653. [s] Memory: 14 [MB] SplFixedArray: Time to fill: 0.005357027054. [s] Time to check: 0.004803000000. [s] Memory: 1 [MB] Arrays: Time to fill: 0.037046909332. [s] Time to check: 0.004658000000. [s] Memory: 2 [MB]
Output for 7.0.3
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.192582130432. [s] Time to check: 0.053273916245. [s] Memory: 14 [MB] SplFixedArray: Time to fill: 0.005867004395. [s] Time to check: 0.005412000000. [s] Memory: 1 [MB] Arrays: Time to fill: 0.046010017395. [s] Time to check: 0.005667000000. [s] Memory: 2 [MB]
Output for 7.0.2
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.223458051682. [s] Time to check: 0.067456960678. [s] Memory: 14 [MB] SplFixedArray: Time to fill: 0.006892919540. [s] Time to check: 0.007186000000. [s] Memory: 1 [MB] Arrays: Time to fill: 0.052048921585. [s] Time to check: 0.005855000000. [s] Memory: 2 [MB]
Output for 7.0.1
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.198338031769. [s] Time to check: 0.062525987625. [s] Memory: 14 [MB] SplFixedArray: Time to fill: 0.007097005844. [s] Time to check: 0.005816000000. [s] Memory: 1 [MB] Arrays: Time to fill: 0.048991918564. [s] Time to check: 0.005656000000. [s] Memory: 2 [MB]
Output for 7.0.0
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.171778917313. [s] Time to check: 0.044600009918. [s] Memory: 14 [MB] SplFixedArray: Time to fill: 0.004628181458. [s] Time to check: 0.004020000000. [s] Memory: 1 [MB] Arrays: Time to fill: 0.034767866135. [s] Time to check: 0.003947000000. [s] Memory: 2 [MB]
Output for 5.6.28
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.121595144272. [s] Time to check: 0.156944990158. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.009464979172. [s] Time to check: 0.014602000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.027647018433. [s] Time to check: 0.014835000000. [s] Memory: 8 [MB]
Output for 5.6.23
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.107557058334. [s] Time to check: 0.151036977768. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.010242938995. [s] Time to check: 0.015605000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.029715061188. [s] Time to check: 0.015636000000. [s] Memory: 8 [MB]
Output for 5.6.22
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.123415946960. [s] Time to check: 0.157971858978. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.010358095169. [s] Time to check: 0.015818000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.029464960098. [s] Time to check: 0.015755000000. [s] Memory: 8 [MB]
Output for 5.6.21
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.129055023193. [s] Time to check: 0.159704923630. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.010315895081. [s] Time to check: 0.016178000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.029691934586. [s] Time to check: 0.015931000000. [s] Memory: 8 [MB]
Output for 5.6.20
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.125667095184. [s] Time to check: 0.186395168304. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.013956069946. [s] Time to check: 0.018902000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.035624027252. [s] Time to check: 0.018574000000. [s] Memory: 8 [MB]
Output for 5.6.19
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.110396146774. [s] Time to check: 0.160941123962. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.010826110840. [s] Time to check: 0.016055000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.030323982239. [s] Time to check: 0.016314000000. [s] Memory: 8 [MB]
Output for 5.6.18
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.115056991577. [s] Time to check: 0.167362928391. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.011126041412. [s] Time to check: 0.017377000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.032260179520. [s] Time to check: 0.017419000000. [s] Memory: 8 [MB]
Output for 5.6.17
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.129394054413. [s] Time to check: 0.189801931381. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.014351844788. [s] Time to check: 0.019368000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.037376165390. [s] Time to check: 0.019373000000. [s] Memory: 8 [MB]
Output for 5.6.16
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.115971088409. [s] Time to check: 0.166436910629. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.010908842087. [s] Time to check: 0.017339000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.032803058624. [s] Time to check: 0.017149000000. [s] Memory: 8 [MB]
Output for 5.6.15
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.121116161346. [s] Time to check: 0.144670009613. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.009011983871. [s] Time to check: 0.014400000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.026530027390. [s] Time to check: 0.014514000000. [s] Memory: 8 [MB]
Output for 5.6.14
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.116322994232. [s] Time to check: 0.169445037842. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.011132001877. [s] Time to check: 0.017256000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.032135009766. [s] Time to check: 0.017353000000. [s] Memory: 8 [MB]
Output for 5.6.13
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.117359876633. [s] Time to check: 0.170342922211. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.011091947556. [s] Time to check: 0.017501000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.032251834869. [s] Time to check: 0.017717000000. [s] Memory: 8 [MB]
Output for 5.6.12
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.116393089294. [s] Time to check: 0.168473958969. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.011209011078. [s] Time to check: 0.017084000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.031780004501. [s] Time to check: 0.017214000000. [s] Memory: 8 [MB]
Output for 5.6.11
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.137937784195. [s] Time to check: 0.191717863083. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.013617992401. [s] Time to check: 0.019879000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.038743972778. [s] Time to check: 0.019062000000. [s] Memory: 8 [MB]
Output for 5.6.10
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.110479831696. [s] Time to check: 0.156004905701. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.009737968445. [s] Time to check: 0.015238000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.030114889145. [s] Time to check: 0.015841000000. [s] Memory: 8 [MB]
Output for 5.6.9
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.106726884842. [s] Time to check: 0.150094985962. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.010277032852. [s] Time to check: 0.015627000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.029202938080. [s] Time to check: 0.015635000000. [s] Memory: 8 [MB]
Output for 5.6.8
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.111224174500. [s] Time to check: 0.150158882141. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.010334968567. [s] Time to check: 0.015589000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.029567956924. [s] Time to check: 0.015840000000. [s] Memory: 8 [MB]
Output for 5.6.0 - 5.6.7
Count of DOMDocuments: 100000 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 2097152 bytes) in /in/tqttt on line 30
Process exited with code 255.
Output for 5.5.37
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.123587131500. [s] Time to check: 0.146314859390. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.009564876556. [s] Time to check: 0.014867000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.027246952057. [s] Time to check: 0.014953000000. [s] Memory: 8 [MB]
Output for 5.5.36
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.109098911285. [s] Time to check: 0.153257131577. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.009946823120. [s] Time to check: 0.015143000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.027263164520. [s] Time to check: 0.015083000000. [s] Memory: 8 [MB]
Output for 5.5.35
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.127378940582. [s] Time to check: 0.187229871750. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.012598037720. [s] Time to check: 0.019236000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.035245895386. [s] Time to check: 0.019377000000. [s] Memory: 8 [MB]
Output for 5.5.34
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.116698026657. [s] Time to check: 0.168587207794. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.011344909668. [s] Time to check: 0.017703000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.031909942627. [s] Time to check: 0.017595000000. [s] Memory: 8 [MB]
Output for 5.5.33
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.110714912415. [s] Time to check: 0.162496089935. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.011269092560. [s] Time to check: 0.016967000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.031399011612. [s] Time to check: 0.017257000000. [s] Memory: 8 [MB]
Output for 5.5.32
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.130530834198. [s] Time to check: 0.187508106232. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.013900041580. [s] Time to check: 0.020348000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.038205862045. [s] Time to check: 0.020713000000. [s] Memory: 8 [MB]
Output for 5.5.31
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.130722045898. [s] Time to check: 0.190320968628. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.014391899109. [s] Time to check: 0.021039000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.038990020752. [s] Time to check: 0.019991000000. [s] Memory: 8 [MB]
Output for 5.5.30
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.117414951324. [s] Time to check: 0.170967817307. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.011470079422. [s] Time to check: 0.017755000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.032248973846. [s] Time to check: 0.018363000000. [s] Memory: 8 [MB]
Output for 5.5.29
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.112854957581. [s] Time to check: 0.152601957321. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.010761022568. [s] Time to check: 0.016473000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.029736042023. [s] Time to check: 0.016430000000. [s] Memory: 8 [MB]
Output for 5.5.28
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.119582891464. [s] Time to check: 0.168906211853. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.011575937271. [s] Time to check: 0.018124000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.032596826553. [s] Time to check: 0.018002000000. [s] Memory: 8 [MB]
Output for 5.5.27
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.125361204147. [s] Time to check: 0.168836832047. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.011901855469. [s] Time to check: 0.017725000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.032884120941. [s] Time to check: 0.017789000000. [s] Memory: 8 [MB]
Output for 5.5.26
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.133030176163. [s] Time to check: 0.188606977463. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.014093875885. [s] Time to check: 0.020219000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.036056041718. [s] Time to check: 0.019015000000. [s] Memory: 8 [MB]
Output for 5.5.25
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.120398998260. [s] Time to check: 0.156264066696. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.011475801468. [s] Time to check: 0.016872000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.032266139984. [s] Time to check: 0.016659000000. [s] Memory: 8 [MB]
Output for 5.5.24
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.123472929001. [s] Time to check: 0.153235912323. [s] Memory: 20 [MB] SplFixedArray: Time to fill: 0.011058092117. [s] Time to check: 0.016445000000. [s] Memory: 0 [MB] Arrays: Time to fill: 0.030516147614. [s] Time to check: 0.016377000000. [s] Memory: 8 [MB]
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.23
Count of DOMDocuments: 100000 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 2097152 bytes) in /in/tqttt on line 29
Process exited with code 255.
Output for 5.3.4 - 5.3.29
Count of DOMDocuments: 100000 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 71 bytes) in /in/tqttt on line 29
Process exited with code 255.
Output for 5.3.1 - 5.3.3
Count of DOMDocuments: 100000 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 87 bytes) in /in/tqttt on line 30
Process exited with code 255.
Output for 5.3.0
Count of DOMDocuments: 100000 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 32 bytes) in /in/tqttt on line 30
Process exited with code 255.
Output for 5.2.17
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.037014007568. [s] Time to check: 0.032720804214. [s] Memory: 10 [MB] Fatal error: Class 'SplFixedArray' not found in /in/tqttt on line 63
Process exited with code 255.
Output for 5.2.16
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.041333913803. [s] Time to check: 0.035325050354. [s] Memory: 10 [MB] Fatal error: Class 'SplFixedArray' not found in /in/tqttt on line 63
Process exited with code 255.
Output for 5.2.15
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.032250165939. [s] Time to check: 0.028673887253. [s] Memory: 10 [MB] Fatal error: Class 'SplFixedArray' not found in /in/tqttt on line 63
Process exited with code 255.
Output for 5.2.14
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.034250020981. [s] Time to check: 0.030260086060. [s] Memory: 10 [MB] Fatal error: Class 'SplFixedArray' not found in /in/tqttt on line 63
Process exited with code 255.
Output for 5.2.13
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.039696931839. [s] Time to check: 0.033168077469. [s] Memory: 10 [MB] Fatal error: Class 'SplFixedArray' not found in /in/tqttt on line 63
Process exited with code 255.
Output for 5.2.12
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.040558815002. [s] Time to check: 0.039625883102. [s] Memory: 10 [MB] Fatal error: Class 'SplFixedArray' not found in /in/tqttt on line 63
Process exited with code 255.
Output for 5.2.11
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.036263942719. [s] Time to check: 0.032751083374. [s] Memory: 10 [MB] Fatal error: Class 'SplFixedArray' not found in /in/tqttt on line 63
Process exited with code 255.
Output for 5.2.10
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.036268949509. [s] Time to check: 0.032397985458. [s] Memory: 10 [MB] Fatal error: Class 'SplFixedArray' not found in /in/tqttt on line 63
Process exited with code 255.
Output for 5.2.9
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.035903930664. [s] Time to check: 0.031771898270. [s] Memory: 10 [MB] Fatal error: Class 'SplFixedArray' not found in /in/tqttt on line 63
Process exited with code 255.
Output for 5.2.8
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.038472890854. [s] Time to check: 0.032755851746. [s] Memory: 10 [MB] Fatal error: Class 'SplFixedArray' not found in /in/tqttt on line 63
Process exited with code 255.
Output for 5.2.7
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.037332057953. [s] Time to check: 0.031308174133. [s] Memory: 10 [MB] Fatal error: Class 'SplFixedArray' not found in /in/tqttt on line 63
Process exited with code 255.
Output for 5.2.6
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.041001081467. [s] Time to check: 0.033742189407. [s] Memory: 10 [MB] Fatal error: Class 'SplFixedArray' not found in /in/tqttt on line 63
Process exited with code 255.
Output for 5.2.5
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.039111137390. [s] Time to check: 0.031934976578. [s] Memory: 10 [MB] Fatal error: Class 'SplFixedArray' not found in /in/tqttt on line 63
Process exited with code 255.
Output for 5.2.4
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.043441772461. [s] Time to check: 0.037000894547. [s] Memory: 10 [MB] Fatal error: Class 'SplFixedArray' not found in /in/tqttt on line 63
Process exited with code 255.
Output for 5.2.3
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.042243003845. [s] Time to check: 0.029094934464. [s] Memory: 10 [MB] Fatal error: Class 'SplFixedArray' not found in /in/tqttt on line 63
Process exited with code 255.
Output for 5.2.2
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.040902137756. [s] Time to check: 0.034872055054. [s] Memory: 10 [MB] Fatal error: Class 'SplFixedArray' not found in /in/tqttt on line 63
Process exited with code 255.
Output for 5.2.1
Count of DOMDocuments: 100000 SplObjectStorage: Time to fill: 0.037719964981. [s] Time to check: 0.035274982452. [s] Memory: 10 [MB] Fatal error: Class 'SplFixedArray' not found in /in/tqttt on line 63
Process exited with code 255.
Output for 5.1.0 - 5.1.6, 5.2.0
Count of DOMDocuments: 100000 Fatal error: Call to undefined function memory_get_usage() in /in/tqttt on line 25
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Fatal error: Class 'SplObjectStorage' not found in /in/tqttt on line 5
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.9
Fatal error: Cannot instantiate non-existent class: splobjectstorage in /in/tqttt on line 5
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Cannot instantiate non-existent class: splobjectstorage in /in/tqttt on line 5

preferences:
167.48 ms | 401 KiB | 257 Q