3v4l.org

run code in 300+ PHP versions simultaneously
<?php ini_set('display_errors', 1); error_reporting(E_ALL); // Make a big, honkin test array // You may need to adjust this depth to avoid memory limit errors $testArray = fillArray(0, 5); // Time json encoding $start = microtime(true); json_encode($testArray); $jsonTime = microtime(true) - $start; echo "JSON encoded in $jsonTime seconds\n"; // Time serialization $start = microtime(true); serialize($testArray); $serializeTime = microtime(true) - $start; echo "PHP serialized in $serializeTime seconds\n"; // Compare them if ($jsonTime < $serializeTime) { printf("json_encode() was roughly %01.2f%% faster than serialize()\n", ($serializeTime / $jsonTime - 1) * 100); } elseif ($serializeTime < $jsonTime ) { printf("serialize() was roughly %01.2f%% faster than json_encode()\n", ($jsonTime / $serializeTime - 1) * 100); } else { echo "Unpossible!\n"; } function fillArray( $depth, $max ) { static $seed; if (is_null($seed)) { $seed = array('a', 2, 'c', 4, 'e', 6, 'g', 8, 'i', 10); } if ($depth < $max) { $node = array(); foreach ($seed as $key) { $node[$key] = fillArray($depth + 1, $max); } return $node; } return 'empty'; }
Output for 8.1.22
JSON encoded in 0.0051591396331787 seconds PHP serialized in 0.0043649673461914 seconds serialize() was roughly 18.19% faster than json_encode()
Output for 8.1.13
JSON encoded in 0.0037879943847656 seconds PHP serialized in 0.00323486328125 seconds serialize() was roughly 17.10% faster than json_encode()
Output for 8.1.12
JSON encoded in 0.0040550231933594 seconds PHP serialized in 0.0032539367675781 seconds serialize() was roughly 24.62% faster than json_encode()
Output for 8.1.11
JSON encoded in 0.0037698745727539 seconds PHP serialized in 0.0031919479370117 seconds serialize() was roughly 18.11% faster than json_encode()
Output for 8.1.10
JSON encoded in 0.0037300586700439 seconds PHP serialized in 0.0031790733337402 seconds serialize() was roughly 17.33% faster than json_encode()
Output for 8.1.9
JSON encoded in 0.0037310123443604 seconds PHP serialized in 0.0031030178070068 seconds serialize() was roughly 20.24% faster than json_encode()
Output for 8.1.8
JSON encoded in 0.0035669803619385 seconds PHP serialized in 0.0036001205444336 seconds json_encode() was roughly 0.93% faster than serialize()
Output for 8.1.7
JSON encoded in 0.0037100315093994 seconds PHP serialized in 0.0031158924102783 seconds serialize() was roughly 19.07% faster than json_encode()
Output for 8.1.6
JSON encoded in 0.0038559436798096 seconds PHP serialized in 0.003324031829834 seconds serialize() was roughly 16.00% faster than json_encode()
Output for 8.1.5
JSON encoded in 0.0036060810089111 seconds PHP serialized in 0.0032718181610107 seconds serialize() was roughly 10.22% faster than json_encode()
Output for 8.1.4
JSON encoded in 0.0038251876831055 seconds PHP serialized in 0.0031518936157227 seconds serialize() was roughly 21.36% faster than json_encode()
Output for 8.1.3
JSON encoded in 0.003629207611084 seconds PHP serialized in 0.0034129619598389 seconds serialize() was roughly 6.34% faster than json_encode()
Output for 8.1.2
JSON encoded in 0.0038750171661377 seconds PHP serialized in 0.0033490657806396 seconds serialize() was roughly 15.70% faster than json_encode()
Output for 8.1.1
JSON encoded in 0.0037300586700439 seconds PHP serialized in 0.0034410953521729 seconds serialize() was roughly 8.40% faster than json_encode()
Output for 8.1.0
JSON encoded in 0.0036361217498779 seconds PHP serialized in 0.0031900405883789 seconds serialize() was roughly 13.98% faster than json_encode()
Output for 8.0.26
JSON encoded in 0.0035099983215332 seconds PHP serialized in 0.0034651756286621 seconds serialize() was roughly 1.29% faster than json_encode()
Output for 8.0.25
JSON encoded in 0.0035419464111328 seconds PHP serialized in 0.0034010410308838 seconds serialize() was roughly 4.14% faster than json_encode()
Output for 8.0.24
JSON encoded in 0.0033950805664062 seconds PHP serialized in 0.0034821033477783 seconds json_encode() was roughly 2.56% faster than serialize()
Output for 8.0.23
JSON encoded in 0.0034008026123047 seconds PHP serialized in 0.003209114074707 seconds serialize() was roughly 5.97% faster than json_encode()
Output for 8.0.22
JSON encoded in 0.0033919811248779 seconds PHP serialized in 0.0033090114593506 seconds serialize() was roughly 2.51% faster than json_encode()
Output for 8.0.21
JSON encoded in 0.0037820339202881 seconds PHP serialized in 0.0033729076385498 seconds serialize() was roughly 12.13% faster than json_encode()
Output for 8.0.20
JSON encoded in 0.0035829544067383 seconds PHP serialized in 0.0035769939422607 seconds serialize() was roughly 0.17% faster than json_encode()
Output for 8.0.19
JSON encoded in 0.0036399364471436 seconds PHP serialized in 0.0036091804504395 seconds serialize() was roughly 0.85% faster than json_encode()
Output for 8.0.18
JSON encoded in 0.0034961700439453 seconds PHP serialized in 0.0033500194549561 seconds serialize() was roughly 4.36% faster than json_encode()
Output for 8.0.17
JSON encoded in 0.0035340785980225 seconds PHP serialized in 0.003389835357666 seconds serialize() was roughly 4.26% faster than json_encode()
Output for 8.0.16
JSON encoded in 0.0034940242767334 seconds PHP serialized in 0.003216028213501 seconds serialize() was roughly 8.64% faster than json_encode()
Output for 8.0.15
JSON encoded in 0.0035030841827393 seconds PHP serialized in 0.0031030178070068 seconds serialize() was roughly 12.89% faster than json_encode()
Output for 8.0.14
JSON encoded in 0.0035040378570557 seconds PHP serialized in 0.0032479763031006 seconds serialize() was roughly 7.88% faster than json_encode()
Output for 8.0.13
JSON encoded in 0.0034041404724121 seconds PHP serialized in 0.0031058788299561 seconds serialize() was roughly 9.60% faster than json_encode()
Output for 8.0.12
JSON encoded in 0.0035350322723389 seconds PHP serialized in 0.0034019947052002 seconds serialize() was roughly 3.91% faster than json_encode()
Output for 8.0.11
JSON encoded in 0.0035848617553711 seconds PHP serialized in 0.0032711029052734 seconds serialize() was roughly 9.59% faster than json_encode()
Output for 8.0.10
JSON encoded in 0.0035710334777832 seconds PHP serialized in 0.0033800601959229 seconds serialize() was roughly 5.65% faster than json_encode()
Output for 8.0.9
JSON encoded in 0.0036008358001709 seconds PHP serialized in 0.0032651424407959 seconds serialize() was roughly 10.28% faster than json_encode()
Output for 8.0.8
JSON encoded in 0.0033740997314453 seconds PHP serialized in 0.0033769607543945 seconds json_encode() was roughly 0.08% faster than serialize()
Output for 8.0.7
JSON encoded in 0.0034289360046387 seconds PHP serialized in 0.0031499862670898 seconds serialize() was roughly 8.86% faster than json_encode()
Output for 8.0.6
JSON encoded in 0.0035271644592285 seconds PHP serialized in 0.003173828125 seconds serialize() was roughly 11.13% faster than json_encode()
Output for 8.0.5
JSON encoded in 0.0035300254821777 seconds PHP serialized in 0.0031859874725342 seconds serialize() was roughly 10.80% faster than json_encode()
Output for 8.0.3
JSON encoded in 0.0033819675445557 seconds PHP serialized in 0.0031940937042236 seconds serialize() was roughly 5.88% faster than json_encode()
Output for 8.0.2
JSON encoded in 0.0036630630493164 seconds PHP serialized in 0.0034129619598389 seconds serialize() was roughly 7.33% faster than json_encode()
Output for 8.0.1
JSON encoded in 0.0036468505859375 seconds PHP serialized in 0.0033941268920898 seconds serialize() was roughly 7.45% faster than json_encode()
Output for 8.0.0
JSON encoded in 0.0033969879150391 seconds PHP serialized in 0.0033450126647949 seconds serialize() was roughly 1.55% faster than json_encode()
Output for 7.4.33
JSON encoded in 0.0035481452941895 seconds PHP serialized in 0.0033688545227051 seconds serialize() was roughly 5.32% faster than json_encode()
Output for 7.4.32
JSON encoded in 0.00347900390625 seconds PHP serialized in 0.0034000873565674 seconds serialize() was roughly 2.32% faster than json_encode()
Output for 7.4.30
JSON encoded in 0.0035128593444824 seconds PHP serialized in 0.0033490657806396 seconds serialize() was roughly 4.89% faster than json_encode()
Output for 7.4.29
JSON encoded in 0.0034818649291992 seconds PHP serialized in 0.00337815284729 seconds serialize() was roughly 3.07% faster than json_encode()
Output for 7.4.28
JSON encoded in 0.0033619403839111 seconds PHP serialized in 0.0032248497009277 seconds serialize() was roughly 4.25% faster than json_encode()
Output for 7.4.27
JSON encoded in 0.0034480094909668 seconds PHP serialized in 0.0033750534057617 seconds serialize() was roughly 2.16% faster than json_encode()
Output for 7.4.26
JSON encoded in 0.0035068988800049 seconds PHP serialized in 0.0031020641326904 seconds serialize() was roughly 13.05% faster than json_encode()
Output for 7.4.25
JSON encoded in 0.0034809112548828 seconds PHP serialized in 0.0033228397369385 seconds serialize() was roughly 4.76% faster than json_encode()
Output for 7.4.24
JSON encoded in 0.0033650398254395 seconds PHP serialized in 0.0033769607543945 seconds json_encode() was roughly 0.35% faster than serialize()
Output for 7.4.23
JSON encoded in 0.0038180351257324 seconds PHP serialized in 0.0033469200134277 seconds serialize() was roughly 14.08% faster than json_encode()
Output for 7.4.22
JSON encoded in 0.003483772277832 seconds PHP serialized in 0.0030500888824463 seconds serialize() was roughly 14.22% faster than json_encode()
Output for 7.4.21
JSON encoded in 0.0035028457641602 seconds PHP serialized in 0.0035049915313721 seconds json_encode() was roughly 0.06% faster than serialize()
Output for 7.4.20
JSON encoded in 0.0036180019378662 seconds PHP serialized in 0.0031578540802002 seconds serialize() was roughly 14.57% faster than json_encode()
Output for 7.4.19
JSON encoded in 0.0034627914428711 seconds PHP serialized in 0.0030529499053955 seconds serialize() was roughly 13.42% faster than json_encode()
Output for 7.4.18
JSON encoded in 0.0034389495849609 seconds PHP serialized in 0.0030839443206787 seconds serialize() was roughly 11.51% faster than json_encode()
Output for 7.4.16
JSON encoded in 0.0034360885620117 seconds PHP serialized in 0.003046989440918 seconds serialize() was roughly 12.77% faster than json_encode()
Output for 7.4.15
JSON encoded in 0.0036098957061768 seconds PHP serialized in 0.003525972366333 seconds serialize() was roughly 2.38% faster than json_encode()
Output for 7.4.14
JSON encoded in 0.003817081451416 seconds PHP serialized in 0.0041310787200928 seconds json_encode() was roughly 8.23% faster than serialize()
Output for 7.4.13
JSON encoded in 0.0036220550537109 seconds PHP serialized in 0.0034501552581787 seconds serialize() was roughly 4.98% faster than json_encode()
Output for 7.4.12
JSON encoded in 0.0035440921783447 seconds PHP serialized in 0.0033290386199951 seconds serialize() was roughly 6.46% faster than json_encode()
Output for 7.4.11
JSON encoded in 0.0038161277770996 seconds PHP serialized in 0.0034589767456055 seconds serialize() was roughly 10.33% faster than json_encode()
Output for 7.4.10
JSON encoded in 0.0034658908843994 seconds PHP serialized in 0.003216028213501 seconds serialize() was roughly 7.77% faster than json_encode()
Output for 7.4.9
JSON encoded in 0.0034241676330566 seconds PHP serialized in 0.0033810138702393 seconds serialize() was roughly 1.28% faster than json_encode()
Output for 7.4.8
JSON encoded in 0.0035059452056885 seconds PHP serialized in 0.003371000289917 seconds serialize() was roughly 4.00% faster than json_encode()
Output for 7.4.7
JSON encoded in 0.0036089420318604 seconds PHP serialized in 0.0031859874725342 seconds serialize() was roughly 13.28% faster than json_encode()
Output for 7.4.6
JSON encoded in 0.0034470558166504 seconds PHP serialized in 0.0033829212188721 seconds serialize() was roughly 1.90% faster than json_encode()
Output for 7.4.5
JSON encoded in 0.0034451484680176 seconds PHP serialized in 0.0031561851501465 seconds serialize() was roughly 9.16% faster than json_encode()
Output for 7.4.4
JSON encoded in 0.0037178993225098 seconds PHP serialized in 0.003122091293335 seconds serialize() was roughly 19.08% faster than json_encode()
Output for 7.4.3
JSON encoded in 0.0036959648132324 seconds PHP serialized in 0.0031411647796631 seconds serialize() was roughly 17.66% faster than json_encode()
Output for 7.4.2
JSON encoded in 0.0035829544067383 seconds PHP serialized in 0.0033879280090332 seconds serialize() was roughly 5.76% faster than json_encode()
Output for 7.4.1
JSON encoded in 0.0038588047027588 seconds PHP serialized in 0.0033769607543945 seconds serialize() was roughly 14.27% faster than json_encode()
Output for 7.4.0
JSON encoded in 0.0038399696350098 seconds PHP serialized in 0.0033049583435059 seconds serialize() was roughly 16.19% faster than json_encode()
Output for 7.3.33
JSON encoded in 0.0034830570220947 seconds PHP serialized in 0.0032279491424561 seconds serialize() was roughly 7.90% faster than json_encode()
Output for 7.3.32
JSON encoded in 0.0035998821258545 seconds PHP serialized in 0.0031797885894775 seconds serialize() was roughly 13.21% faster than json_encode()
Output for 7.3.31
JSON encoded in 0.0035088062286377 seconds PHP serialized in 0.0033330917358398 seconds serialize() was roughly 5.27% faster than json_encode()
Output for 7.3.30
JSON encoded in 0.0034549236297607 seconds PHP serialized in 0.0032799243927002 seconds serialize() was roughly 5.34% faster than json_encode()
Output for 7.3.29
JSON encoded in 0.003605842590332 seconds PHP serialized in 0.0031599998474121 seconds serialize() was roughly 14.11% faster than json_encode()
Output for 7.3.28
JSON encoded in 0.0035309791564941 seconds PHP serialized in 0.003277063369751 seconds serialize() was roughly 7.75% faster than json_encode()
Output for 7.3.27
JSON encoded in 0.0034570693969727 seconds PHP serialized in 0.0032238960266113 seconds serialize() was roughly 7.23% faster than json_encode()
Output for 7.3.26
JSON encoded in 0.0034711360931396 seconds PHP serialized in 0.0030519962310791 seconds serialize() was roughly 13.73% faster than json_encode()
Output for 7.3.25
JSON encoded in 0.003615140914917 seconds PHP serialized in 0.0033259391784668 seconds serialize() was roughly 8.70% faster than json_encode()
Output for 7.3.24
JSON encoded in 0.0037050247192383 seconds PHP serialized in 0.003223180770874 seconds serialize() was roughly 14.95% faster than json_encode()
Output for 7.3.23
JSON encoded in 0.0034971237182617 seconds PHP serialized in 0.0033040046691895 seconds serialize() was roughly 5.84% faster than json_encode()
Output for 7.3.22
JSON encoded in 0.0034220218658447 seconds PHP serialized in 0.0033400058746338 seconds serialize() was roughly 2.46% faster than json_encode()
Output for 7.3.21
JSON encoded in 0.0034739971160889 seconds PHP serialized in 0.0031101703643799 seconds serialize() was roughly 11.70% faster than json_encode()
Output for 7.3.20
JSON encoded in 0.003464937210083 seconds PHP serialized in 0.0031731128692627 seconds serialize() was roughly 9.20% faster than json_encode()
Output for 7.3.19
JSON encoded in 0.0034589767456055 seconds PHP serialized in 0.0033957958221436 seconds serialize() was roughly 1.86% faster than json_encode()
Output for 7.3.18
JSON encoded in 0.0034811496734619 seconds PHP serialized in 0.0032250881195068 seconds serialize() was roughly 7.94% faster than json_encode()
Output for 7.3.17
JSON encoded in 0.0035240650177002 seconds PHP serialized in 0.0032649040222168 seconds serialize() was roughly 7.94% faster than json_encode()
Output for 7.3.16
JSON encoded in 0.0035991668701172 seconds PHP serialized in 0.0032980442047119 seconds serialize() was roughly 9.13% faster than json_encode()
Output for 7.3.15
JSON encoded in 0.0036280155181885 seconds PHP serialized in 0.0035240650177002 seconds serialize() was roughly 2.95% faster than json_encode()
Output for 7.3.14
JSON encoded in 0.0037128925323486 seconds PHP serialized in 0.0047740936279297 seconds json_encode() was roughly 28.58% faster than serialize()
Output for 7.3.13
JSON encoded in 0.0036931037902832 seconds PHP serialized in 0.0033140182495117 seconds serialize() was roughly 11.44% faster than json_encode()
Output for 7.3.12
JSON encoded in 0.0037930011749268 seconds PHP serialized in 0.0033750534057617 seconds serialize() was roughly 12.38% faster than json_encode()
Output for 7.3.11
JSON encoded in 0.0040171146392822 seconds PHP serialized in 0.0032110214233398 seconds serialize() was roughly 25.10% faster than json_encode()
Output for 7.3.10
JSON encoded in 0.0037970542907715 seconds PHP serialized in 0.0034658908843994 seconds serialize() was roughly 9.55% faster than json_encode()
Output for 7.3.9
JSON encoded in 0.0035769939422607 seconds PHP serialized in 0.0033349990844727 seconds serialize() was roughly 7.26% faster than json_encode()
Output for 7.3.8
JSON encoded in 0.0037670135498047 seconds PHP serialized in 0.0033290386199951 seconds serialize() was roughly 13.16% faster than json_encode()
Output for 7.3.7
JSON encoded in 0.0035820007324219 seconds PHP serialized in 0.0033788681030273 seconds serialize() was roughly 6.01% faster than json_encode()
Output for 7.3.6
JSON encoded in 0.003803014755249 seconds PHP serialized in 0.0032551288604736 seconds serialize() was roughly 16.83% faster than json_encode()
Output for 7.3.5
JSON encoded in 0.0035688877105713 seconds PHP serialized in 0.0032210350036621 seconds serialize() was roughly 10.80% faster than json_encode()
Output for 7.3.4
JSON encoded in 0.003817081451416 seconds PHP serialized in 0.0032079219818115 seconds serialize() was roughly 18.99% faster than json_encode()
Output for 7.3.3
JSON encoded in 0.0045449733734131 seconds PHP serialized in 0.0032498836517334 seconds serialize() was roughly 39.85% faster than json_encode()
Output for 7.3.2
JSON encoded in 0.0040459632873535 seconds PHP serialized in 0.0046000480651855 seconds json_encode() was roughly 13.69% faster than serialize()
Output for 7.3.1
JSON encoded in 0.0044248104095459 seconds PHP serialized in 0.0036649703979492 seconds serialize() was roughly 20.73% faster than json_encode()
Output for 7.3.0
JSON encoded in 0.0042788982391357 seconds PHP serialized in 0.0036289691925049 seconds serialize() was roughly 17.91% faster than json_encode()
Output for 7.2.34
JSON encoded in 0.0045740604400635 seconds PHP serialized in 0.0033209323883057 seconds serialize() was roughly 37.73% faster than json_encode()
Output for 7.2.33
JSON encoded in 0.004410982131958 seconds PHP serialized in 0.0033109188079834 seconds serialize() was roughly 33.23% faster than json_encode()
Output for 7.2.32
JSON encoded in 0.0044229030609131 seconds PHP serialized in 0.00323486328125 seconds serialize() was roughly 36.73% faster than json_encode()
Output for 7.2.31
JSON encoded in 0.004425048828125 seconds PHP serialized in 0.0032479763031006 seconds serialize() was roughly 36.24% faster than json_encode()
Output for 7.2.30
JSON encoded in 0.0043599605560303 seconds PHP serialized in 0.0032460689544678 seconds serialize() was roughly 34.32% faster than json_encode()
Output for 7.2.29
JSON encoded in 0.004425048828125 seconds PHP serialized in 0.003291130065918 seconds serialize() was roughly 34.45% faster than json_encode()
Output for 7.2.28
JSON encoded in 0.0043408870697021 seconds PHP serialized in 0.0032999515533447 seconds serialize() was roughly 31.54% faster than json_encode()
Output for 7.2.27
JSON encoded in 0.0043439865112305 seconds PHP serialized in 0.0032229423522949 seconds serialize() was roughly 34.78% faster than json_encode()
Output for 7.2.26
JSON encoded in 0.0043420791625977 seconds PHP serialized in 0.003352165222168 seconds serialize() was roughly 29.53% faster than json_encode()
Output for 7.2.25
JSON encoded in 0.0052318572998047 seconds PHP serialized in 0.0034210681915283 seconds serialize() was roughly 52.93% faster than json_encode()
Output for 7.2.24
JSON encoded in 0.0043909549713135 seconds PHP serialized in 0.0034089088439941 seconds serialize() was roughly 28.81% faster than json_encode()
Output for 7.2.23
JSON encoded in 0.0043880939483643 seconds PHP serialized in 0.0033061504364014 seconds serialize() was roughly 32.73% faster than json_encode()
Output for 7.2.22
JSON encoded in 0.0044000148773193 seconds PHP serialized in 0.0032639503479004 seconds serialize() was roughly 34.81% faster than json_encode()
Output for 7.2.21
JSON encoded in 0.0044450759887695 seconds PHP serialized in 0.0032808780670166 seconds serialize() was roughly 35.48% faster than json_encode()
Output for 7.2.20
JSON encoded in 0.0044131278991699 seconds PHP serialized in 0.0033040046691895 seconds serialize() was roughly 33.57% faster than json_encode()
Output for 7.2.19
JSON encoded in 0.004565954208374 seconds PHP serialized in 0.0033679008483887 seconds serialize() was roughly 35.57% faster than json_encode()
Output for 7.2.18
JSON encoded in 0.0043179988861084 seconds PHP serialized in 0.0032069683074951 seconds serialize() was roughly 34.64% faster than json_encode()
Output for 7.2.17
JSON encoded in 0.0047550201416016 seconds PHP serialized in 0.0034720897674561 seconds serialize() was roughly 36.95% faster than json_encode()
Output for 7.2.16
JSON encoded in 0.0043752193450928 seconds PHP serialized in 0.003342866897583 seconds serialize() was roughly 30.88% faster than json_encode()
Output for 7.2.15
JSON encoded in 0.0047681331634521 seconds PHP serialized in 0.0044991970062256 seconds serialize() was roughly 5.98% faster than json_encode()
Output for 7.2.14
JSON encoded in 0.0051000118255615 seconds PHP serialized in 0.0060958862304688 seconds json_encode() was roughly 19.53% faster than serialize()
Output for 7.2.13
JSON encoded in 0.0050938129425049 seconds PHP serialized in 0.0046730041503906 seconds serialize() was roughly 9.01% faster than json_encode()
Output for 7.2.12
JSON encoded in 0.0047111511230469 seconds PHP serialized in 0.0038831233978271 seconds serialize() was roughly 21.32% faster than json_encode()
Output for 7.2.11
JSON encoded in 0.0051190853118896 seconds PHP serialized in 0.0037820339202881 seconds serialize() was roughly 35.35% faster than json_encode()
Output for 7.2.10
JSON encoded in 0.0048220157623291 seconds PHP serialized in 0.0035910606384277 seconds serialize() was roughly 34.28% faster than json_encode()
Output for 7.2.9
JSON encoded in 0.015146970748901 seconds PHP serialized in 0.0044870376586914 seconds serialize() was roughly 237.57% faster than json_encode()
Output for 7.2.8
JSON encoded in 0.0046839714050293 seconds PHP serialized in 0.0036509037017822 seconds serialize() was roughly 28.30% faster than json_encode()
Output for 7.2.7
JSON encoded in 0.0046110153198242 seconds PHP serialized in 0.0035569667816162 seconds serialize() was roughly 29.63% faster than json_encode()
Output for 7.2.6
JSON encoded in 0.0047619342803955 seconds PHP serialized in 0.0037500858306885 seconds serialize() was roughly 26.98% faster than json_encode()
Output for 7.2.5
JSON encoded in 0.0048208236694336 seconds PHP serialized in 0.0037550926208496 seconds serialize() was roughly 28.38% faster than json_encode()
Output for 7.2.4
JSON encoded in 0.0053489208221436 seconds PHP serialized in 0.0039842128753662 seconds serialize() was roughly 34.25% faster than json_encode()
Output for 7.2.3
JSON encoded in 0.0045971870422363 seconds PHP serialized in 0.0037510395050049 seconds serialize() was roughly 22.56% faster than json_encode()
Output for 7.2.2
JSON encoded in 0.0048820972442627 seconds PHP serialized in 0.004086971282959 seconds serialize() was roughly 19.46% faster than json_encode()
Output for 7.2.1
JSON encoded in 0.0049090385437012 seconds PHP serialized in 0.0037460327148438 seconds serialize() was roughly 31.05% faster than json_encode()
Output for 7.2.0
JSON encoded in 0.017367839813232 seconds PHP serialized in 0.0059578418731689 seconds serialize() was roughly 191.51% faster than json_encode()
Output for 7.1.33
JSON encoded in 0.004918098449707 seconds PHP serialized in 0.0039398670196533 seconds serialize() was roughly 24.83% faster than json_encode()
Output for 7.1.32
JSON encoded in 0.0047361850738525 seconds PHP serialized in 0.0038900375366211 seconds serialize() was roughly 21.75% faster than json_encode()
Output for 7.1.31
JSON encoded in 0.0049829483032227 seconds PHP serialized in 0.00376296043396 seconds serialize() was roughly 32.42% faster than json_encode()
Output for 7.1.30
JSON encoded in 0.0047969818115234 seconds PHP serialized in 0.0037758350372314 seconds serialize() was roughly 27.04% faster than json_encode()
Output for 7.1.29
JSON encoded in 0.0052361488342285 seconds PHP serialized in 0.0039350986480713 seconds serialize() was roughly 33.06% faster than json_encode()
Output for 7.1.28
JSON encoded in 0.0048859119415283 seconds PHP serialized in 0.0039770603179932 seconds serialize() was roughly 22.85% faster than json_encode()
Output for 7.1.27
JSON encoded in 0.0047600269317627 seconds PHP serialized in 0.0038180351257324 seconds serialize() was roughly 24.67% faster than json_encode()
Output for 7.1.26
JSON encoded in 0.0049309730529785 seconds PHP serialized in 0.0040998458862305 seconds serialize() was roughly 20.27% faster than json_encode()
Output for 7.1.25
JSON encoded in 0.042083024978638 seconds PHP serialized in 0.003931999206543 seconds serialize() was roughly 970.27% faster than json_encode()
Output for 7.1.24
JSON encoded in 0.0045690536499023 seconds PHP serialized in 0.0036661624908447 seconds serialize() was roughly 24.63% faster than json_encode()
Output for 7.1.23
JSON encoded in 0.0048999786376953 seconds PHP serialized in 0.0036289691925049 seconds serialize() was roughly 35.02% faster than json_encode()
Output for 7.1.22
JSON encoded in 0.0047831535339355 seconds PHP serialized in 0.0040318965911865 seconds serialize() was roughly 18.63% faster than json_encode()
Output for 7.1.21
JSON encoded in 0.0047080516815186 seconds PHP serialized in 0.0040028095245361 seconds serialize() was roughly 17.62% faster than json_encode()
Output for 7.1.20
JSON encoded in 0.0049898624420166 seconds PHP serialized in 0.0039658546447754 seconds serialize() was roughly 25.82% faster than json_encode()
Output for 7.1.19
JSON encoded in 0.0049369335174561 seconds PHP serialized in 0.0040979385375977 seconds serialize() was roughly 20.47% faster than json_encode()
Output for 7.1.18
JSON encoded in 0.0080711841583252 seconds PHP serialized in 0.0052721500396729 seconds serialize() was roughly 53.09% faster than json_encode()
Output for 7.1.17
JSON encoded in 0.0046770572662354 seconds PHP serialized in 0.0037109851837158 seconds serialize() was roughly 26.03% faster than json_encode()
Output for 7.1.16
JSON encoded in 0.0048830509185791 seconds PHP serialized in 0.018248081207275 seconds json_encode() was roughly 273.70% faster than serialize()
Output for 7.1.15
JSON encoded in 0.0047070980072021 seconds PHP serialized in 0.0038220882415771 seconds serialize() was roughly 23.16% faster than json_encode()
Output for 7.1.14
JSON encoded in 0.0049870014190674 seconds PHP serialized in 0.0039939880371094 seconds serialize() was roughly 24.86% faster than json_encode()
Output for 7.1.13
JSON encoded in 0.0048401355743408 seconds PHP serialized in 0.0038199424743652 seconds serialize() was roughly 26.71% faster than json_encode()
Output for 7.1.12
JSON encoded in 0.0047471523284912 seconds PHP serialized in 0.0042290687561035 seconds serialize() was roughly 12.25% faster than json_encode()
Output for 7.1.11
JSON encoded in 0.0058150291442871 seconds PHP serialized in 0.0039558410644531 seconds serialize() was roughly 47.00% faster than json_encode()
Output for 7.1.10
JSON encoded in 0.0050008296966553 seconds PHP serialized in 0.0039069652557373 seconds serialize() was roughly 28.00% faster than json_encode()
Output for 7.1.9
JSON encoded in 0.0046210289001465 seconds PHP serialized in 0.0040500164031982 seconds serialize() was roughly 14.10% faster than json_encode()
Output for 7.1.8
JSON encoded in 0.005047082901001 seconds PHP serialized in 0.0042409896850586 seconds serialize() was roughly 19.01% faster than json_encode()
Output for 7.1.7
JSON encoded in 0.0049190521240234 seconds PHP serialized in 0.0037360191345215 seconds serialize() was roughly 31.67% faster than json_encode()
Output for 7.1.6
JSON encoded in 0.0069410800933838 seconds PHP serialized in 0.005424976348877 seconds serialize() was roughly 27.95% faster than json_encode()
Output for 7.1.5
JSON encoded in 0.0073840618133545 seconds PHP serialized in 0.0037519931793213 seconds serialize() was roughly 96.80% faster than json_encode()
Output for 7.1.4
JSON encoded in 0.0042610168457031 seconds PHP serialized in 0.0030229091644287 seconds serialize() was roughly 40.96% faster than json_encode()
Output for 7.1.3
JSON encoded in 0.0042960643768311 seconds PHP serialized in 0.0029439926147461 seconds serialize() was roughly 45.93% faster than json_encode()
Output for 7.1.2
JSON encoded in 0.0081551074981689 seconds PHP serialized in 0.0045890808105469 seconds serialize() was roughly 77.71% faster than json_encode()
Output for 7.1.1
JSON encoded in 0.0042269229888916 seconds PHP serialized in 0.0028178691864014 seconds serialize() was roughly 50.00% faster than json_encode()
Output for 7.1.0
JSON encoded in 0.0045490264892578 seconds PHP serialized in 0.0026359558105469 seconds serialize() was roughly 72.58% faster than json_encode()
Output for 7.0.33
JSON encoded in 0.0062458515167236 seconds PHP serialized in 0.0033340454101562 seconds serialize() was roughly 87.34% faster than json_encode()
Output for 7.0.32
JSON encoded in 0.0042510032653809 seconds PHP serialized in 0.0028889179229736 seconds serialize() was roughly 47.15% faster than json_encode()
Output for 7.0.31
JSON encoded in 0.0041451454162598 seconds PHP serialized in 0.0052940845489502 seconds json_encode() was roughly 27.72% faster than serialize()
Output for 7.0.30
JSON encoded in 0.0061137676239014 seconds PHP serialized in 0.004472017288208 seconds serialize() was roughly 36.71% faster than json_encode()
Output for 7.0.29
JSON encoded in 0.0041220188140869 seconds PHP serialized in 0.0029189586639404 seconds serialize() was roughly 41.22% faster than json_encode()
Output for 7.0.28
JSON encoded in 0.0042679309844971 seconds PHP serialized in 0.0055859088897705 seconds json_encode() was roughly 30.88% faster than serialize()
Output for 7.0.27
JSON encoded in 0.0064880847930908 seconds PHP serialized in 0.0049569606781006 seconds serialize() was roughly 30.89% faster than json_encode()
Output for 7.0.26
JSON encoded in 0.0041918754577637 seconds PHP serialized in 0.0049629211425781 seconds json_encode() was roughly 18.39% faster than serialize()
Output for 7.0.25
JSON encoded in 0.0043230056762695 seconds PHP serialized in 0.0055379867553711 seconds json_encode() was roughly 28.11% faster than serialize()
Output for 7.0.24
JSON encoded in 0.0041511058807373 seconds PHP serialized in 0.0027370452880859 seconds serialize() was roughly 51.66% faster than json_encode()
Output for 7.0.23
JSON encoded in 0.0066049098968506 seconds PHP serialized in 0.0028588771820068 seconds serialize() was roughly 131.03% faster than json_encode()
Output for 7.0.22
JSON encoded in 0.0041680335998535 seconds PHP serialized in 0.0031108856201172 seconds serialize() was roughly 33.98% faster than json_encode()
Output for 7.0.21
JSON encoded in 0.0065321922302246 seconds PHP serialized in 0.0052568912506104 seconds serialize() was roughly 24.26% faster than json_encode()
Output for 7.0.20
JSON encoded in 0.0042188167572021 seconds PHP serialized in 0.0028560161590576 seconds serialize() was roughly 47.72% faster than json_encode()
Output for 7.0.19
JSON encoded in 0.0068149566650391 seconds PHP serialized in 0.0062990188598633 seconds serialize() was roughly 8.19% faster than json_encode()
Output for 7.0.18
JSON encoded in 0.0060050487518311 seconds PHP serialized in 0.0043869018554688 seconds serialize() was roughly 36.89% faster than json_encode()
Output for 7.0.17
JSON encoded in 0.0042159557342529 seconds PHP serialized in 0.0027239322662354 seconds serialize() was roughly 54.77% faster than json_encode()
Output for 7.0.16
JSON encoded in 0.0042390823364258 seconds PHP serialized in 0.0028388500213623 seconds serialize() was roughly 49.32% faster than json_encode()
Output for 7.0.15
JSON encoded in 0.0058519840240479 seconds PHP serialized in 0.0041100978851318 seconds serialize() was roughly 42.38% faster than json_encode()
Output for 7.0.14
JSON encoded in 0.0041148662567139 seconds PHP serialized in 0.0028290748596191 seconds serialize() was roughly 45.45% faster than json_encode()
Output for 7.0.13
JSON encoded in 0.0060129165649414 seconds PHP serialized in 0.0043230056762695 seconds serialize() was roughly 39.09% faster than json_encode()
Output for 7.0.12
JSON encoded in 0.0051159858703613 seconds PHP serialized in 0.0036880970001221 seconds serialize() was roughly 38.72% faster than json_encode()
Output for 7.0.11
JSON encoded in 0.0041568279266357 seconds PHP serialized in 0.0028560161590576 seconds serialize() was roughly 45.55% faster than json_encode()
Output for 7.0.10
JSON encoded in 0.0042250156402588 seconds PHP serialized in 0.0027520656585693 seconds serialize() was roughly 53.52% faster than json_encode()
Output for 7.0.9
JSON encoded in 0.0060639381408691 seconds PHP serialized in 0.0043060779571533 seconds serialize() was roughly 40.82% faster than json_encode()
Output for 7.0.8
JSON encoded in 0.0042860507965088 seconds PHP serialized in 0.0027439594268799 seconds serialize() was roughly 56.20% faster than json_encode()
Output for 7.0.7
JSON encoded in 0.0041310787200928 seconds PHP serialized in 0.0026051998138428 seconds serialize() was roughly 58.57% faster than json_encode()
Output for 7.0.6
JSON encoded in 0.0042071342468262 seconds PHP serialized in 0.0027868747711182 seconds serialize() was roughly 50.96% faster than json_encode()
Output for 7.0.5
JSON encoded in 0.0041639804840088 seconds PHP serialized in 0.0046908855438232 seconds json_encode() was roughly 12.65% faster than serialize()
Output for 7.0.4
JSON encoded in 0.0041630268096924 seconds PHP serialized in 0.0027899742126465 seconds serialize() was roughly 49.21% faster than json_encode()
Output for 7.0.3
JSON encoded in 0.0042970180511475 seconds PHP serialized in 0.0030250549316406 seconds serialize() was roughly 42.05% faster than json_encode()
Output for 7.0.2
JSON encoded in 0.006831169128418 seconds PHP serialized in 0.004335880279541 seconds serialize() was roughly 57.55% faster than json_encode()
Output for 7.0.1
JSON encoded in 0.0054059028625488 seconds PHP serialized in 0.0040519237518311 seconds serialize() was roughly 33.42% faster than json_encode()
Output for 7.0.0
JSON encoded in 0.004223108291626 seconds PHP serialized in 0.002936840057373 seconds serialize() was roughly 43.80% faster than json_encode()
Output for 5.6.40
JSON encoded in 0.011117935180664 seconds PHP serialized in 0.028213024139404 seconds json_encode() was roughly 153.76% faster than serialize()
Output for 5.6.39
JSON encoded in 0.011099815368652 seconds PHP serialized in 0.029965877532959 seconds json_encode() was roughly 169.97% faster than serialize()
Output for 5.6.38
JSON encoded in 0.010892868041992 seconds PHP serialized in 0.028366804122925 seconds json_encode() was roughly 160.42% faster than serialize()
Output for 5.6.37
JSON encoded in 0.011351823806763 seconds PHP serialized in 0.02836012840271 seconds json_encode() was roughly 149.83% faster than serialize()
Output for 5.6.36
JSON encoded in 0.010957002639771 seconds PHP serialized in 0.028968095779419 seconds json_encode() was roughly 164.38% faster than serialize()
Output for 5.6.35
JSON encoded in 0.011304140090942 seconds PHP serialized in 0.028685092926025 seconds json_encode() was roughly 153.76% faster than serialize()
Output for 5.6.34
JSON encoded in 0.011087894439697 seconds PHP serialized in 0.028225898742676 seconds json_encode() was roughly 154.57% faster than serialize()
Output for 5.6.33
JSON encoded in 0.011219024658203 seconds PHP serialized in 0.028278827667236 seconds json_encode() was roughly 152.06% faster than serialize()
Output for 5.6.32
JSON encoded in 0.011028051376343 seconds PHP serialized in 0.028455972671509 seconds json_encode() was roughly 158.03% faster than serialize()
Output for 5.6.31
JSON encoded in 0.011120080947876 seconds PHP serialized in 0.028066873550415 seconds json_encode() was roughly 152.40% faster than serialize()
Output for 5.6.30
JSON encoded in 0.012282133102417 seconds PHP serialized in 0.030128955841064 seconds json_encode() was roughly 145.31% faster than serialize()
Output for 5.6.29
JSON encoded in 0.010866165161133 seconds PHP serialized in 0.028687953948975 seconds json_encode() was roughly 164.01% faster than serialize()
Output for 5.6.28
JSON encoded in 0.010648965835571 seconds PHP serialized in 0.027936935424805 seconds json_encode() was roughly 162.34% faster than serialize()
Output for 5.6.27
JSON encoded in 0.010707855224609 seconds PHP serialized in 0.028446912765503 seconds json_encode() was roughly 165.66% faster than serialize()
Output for 5.6.26
JSON encoded in 0.011262178421021 seconds PHP serialized in 0.027795076370239 seconds json_encode() was roughly 146.80% faster than serialize()
Output for 5.6.25
JSON encoded in 0.010848999023438 seconds PHP serialized in 0.028362035751343 seconds json_encode() was roughly 161.43% faster than serialize()
Output for 5.6.24
JSON encoded in 0.010956048965454 seconds PHP serialized in 0.028266906738281 seconds json_encode() was roughly 158.00% faster than serialize()
Output for 5.6.23
JSON encoded in 0.010934114456177 seconds PHP serialized in 0.028314828872681 seconds json_encode() was roughly 158.96% faster than serialize()
Output for 5.6.22
JSON encoded in 0.010105133056641 seconds PHP serialized in 0.027696847915649 seconds json_encode() was roughly 174.09% faster than serialize()
Output for 5.6.21
JSON encoded in 0.010296106338501 seconds PHP serialized in 0.027692794799805 seconds json_encode() was roughly 168.96% faster than serialize()
Output for 5.6.20
JSON encoded in 0.010091066360474 seconds PHP serialized in 0.027756214141846 seconds json_encode() was roughly 175.06% faster than serialize()
Output for 5.6.19
JSON encoded in 0.011120080947876 seconds PHP serialized in 0.030365943908691 seconds json_encode() was roughly 173.07% faster than serialize()
Output for 5.6.18
JSON encoded in 0.010354042053223 seconds PHP serialized in 0.027488946914673 seconds json_encode() was roughly 165.49% faster than serialize()
Output for 5.6.17
JSON encoded in 0.011147975921631 seconds PHP serialized in 0.0315101146698 seconds json_encode() was roughly 182.65% faster than serialize()
Output for 5.6.16
JSON encoded in 0.0099589824676514 seconds PHP serialized in 0.027957916259766 seconds json_encode() was roughly 180.73% faster than serialize()
Output for 5.6.15
JSON encoded in 0.0099401473999023 seconds PHP serialized in 0.02874493598938 seconds json_encode() was roughly 189.18% faster than serialize()
Output for 5.6.14
JSON encoded in 0.010296106338501 seconds PHP serialized in 0.02872109413147 seconds json_encode() was roughly 178.95% faster than serialize()
Output for 5.6.13
JSON encoded in 0.01025915145874 seconds PHP serialized in 0.029650926589966 seconds json_encode() was roughly 189.02% faster than serialize()
Output for 5.6.12
JSON encoded in 0.01025390625 seconds PHP serialized in 0.028187990188599 seconds json_encode() was roughly 174.90% faster than serialize()
Output for 5.6.11
JSON encoded in 0.010144948959351 seconds PHP serialized in 0.028685092926025 seconds json_encode() was roughly 182.75% faster than serialize()
Output for 5.6.10
JSON encoded in 0.010288953781128 seconds PHP serialized in 0.028111219406128 seconds json_encode() was roughly 173.22% faster than serialize()
Output for 5.6.9
JSON encoded in 0.010450124740601 seconds PHP serialized in 0.0293869972229 seconds json_encode() was roughly 181.21% faster than serialize()
Output for 5.6.8
JSON encoded in 0.0098040103912354 seconds PHP serialized in 0.028177976608276 seconds json_encode() was roughly 187.41% faster than serialize()
Output for 5.6.7
JSON encoded in 0.01007604598999 seconds PHP serialized in 0.027815103530884 seconds json_encode() was roughly 176.05% faster than serialize()
Output for 5.6.6
JSON encoded in 0.010139942169189 seconds PHP serialized in 0.032580137252808 seconds json_encode() was roughly 221.30% faster than serialize()
Output for 5.6.5
JSON encoded in 0.010033130645752 seconds PHP serialized in 0.028103113174438 seconds json_encode() was roughly 180.10% faster than serialize()
Output for 5.6.4
JSON encoded in 0.0099461078643799 seconds PHP serialized in 0.02888298034668 seconds json_encode() was roughly 190.39% faster than serialize()
Output for 5.6.3
JSON encoded in 0.010107040405273 seconds PHP serialized in 0.028558969497681 seconds json_encode() was roughly 182.57% faster than serialize()
Output for 5.6.2
JSON encoded in 0.0096831321716309 seconds PHP serialized in 0.02829909324646 seconds json_encode() was roughly 192.25% faster than serialize()
Output for 5.6.1
JSON encoded in 0.0096690654754639 seconds PHP serialized in 0.028265953063965 seconds json_encode() was roughly 192.33% faster than serialize()
Output for 5.6.0
JSON encoded in 0.0095691680908203 seconds PHP serialized in 0.026885032653809 seconds json_encode() was roughly 180.95% faster than serialize()
Output for 5.5.38
JSON encoded in 0.010588884353638 seconds PHP serialized in 0.02836799621582 seconds json_encode() was roughly 167.90% faster than serialize()
Output for 5.5.37
JSON encoded in 0.010494947433472 seconds PHP serialized in 0.028385162353516 seconds json_encode() was roughly 170.47% faster than serialize()
Output for 5.5.36
JSON encoded in 0.0098519325256348 seconds PHP serialized in 0.028462886810303 seconds json_encode() was roughly 188.91% faster than serialize()
Output for 5.5.35
JSON encoded in 0.0097510814666748 seconds PHP serialized in 0.028504848480225 seconds json_encode() was roughly 192.32% faster than serialize()
Output for 5.5.34
JSON encoded in 0.009810209274292 seconds PHP serialized in 0.028264999389648 seconds json_encode() was roughly 188.12% faster than serialize()
Output for 5.5.33
JSON encoded in 0.010066986083984 seconds PHP serialized in 0.032195806503296 seconds json_encode() was roughly 219.82% faster than serialize()
Output for 5.5.32
JSON encoded in 0.0101318359375 seconds PHP serialized in 0.028623104095459 seconds json_encode() was roughly 182.51% faster than serialize()
Output for 5.5.31
JSON encoded in 0.009666919708252 seconds PHP serialized in 0.028409004211426 seconds json_encode() was roughly 193.88% faster than serialize()
Output for 5.5.30
JSON encoded in 0.010037899017334 seconds PHP serialized in 0.02851676940918 seconds json_encode() was roughly 184.09% faster than serialize()
Output for 5.5.29
JSON encoded in 0.010113000869751 seconds PHP serialized in 0.028670072555542 seconds json_encode() was roughly 183.50% faster than serialize()
Output for 5.5.28
JSON encoded in 0.0097701549530029 seconds PHP serialized in 0.027985811233521 seconds json_encode() was roughly 186.44% faster than serialize()
Output for 5.5.27
JSON encoded in 0.0102858543396 seconds PHP serialized in 0.028566837310791 seconds json_encode() was roughly 177.73% faster than serialize()
Output for 5.5.26
JSON encoded in 0.0097088813781738 seconds PHP serialized in 0.029285192489624 seconds json_encode() was roughly 201.63% faster than serialize()
Output for 5.5.25
JSON encoded in 0.0099918842315674 seconds PHP serialized in 0.029314994812012 seconds json_encode() was roughly 193.39% faster than serialize()
Output for 5.5.24
JSON encoded in 0.010510921478271 seconds PHP serialized in 0.028538942337036 seconds json_encode() was roughly 171.52% faster than serialize()
Output for 5.5.23
JSON encoded in 0.01029109954834 seconds PHP serialized in 0.027883768081665 seconds json_encode() was roughly 170.95% faster than serialize()
Output for 5.5.22
JSON encoded in 0.010034799575806 seconds PHP serialized in 0.028080940246582 seconds json_encode() was roughly 179.84% faster than serialize()
Output for 5.5.21
JSON encoded in 0.010458946228027 seconds PHP serialized in 0.028116941452026 seconds json_encode() was roughly 168.83% faster than serialize()
Output for 5.5.20
JSON encoded in 0.0103600025177 seconds PHP serialized in 0.028198003768921 seconds json_encode() was roughly 172.18% faster than serialize()
Output for 5.5.19
JSON encoded in 0.0095689296722412 seconds PHP serialized in 0.028718948364258 seconds json_encode() was roughly 200.13% faster than serialize()
Output for 5.5.18
JSON encoded in 0.011526107788086 seconds PHP serialized in 0.030019998550415 seconds json_encode() was roughly 160.45% faster than serialize()
Output for 5.5.17
JSON encoded in 0.0098681449890137 seconds PHP serialized in 0.027678966522217 seconds json_encode() was roughly 180.49% faster than serialize()
Output for 5.5.16
JSON encoded in 0.010029077529907 seconds PHP serialized in 0.028228044509888 seconds json_encode() was roughly 181.46% faster than serialize()
Output for 5.5.15
JSON encoded in 0.0098209381103516 seconds PHP serialized in 0.029098987579346 seconds json_encode() was roughly 196.30% faster than serialize()
Output for 5.5.14
JSON encoded in 0.010004043579102 seconds PHP serialized in 0.028955936431885 seconds json_encode() was roughly 189.44% faster than serialize()
Output for 5.5.13
JSON encoded in 0.01050591468811 seconds PHP serialized in 0.028949975967407 seconds json_encode() was roughly 175.56% faster than serialize()
Output for 5.5.12
JSON encoded in 0.010385990142822 seconds PHP serialized in 0.028547048568726 seconds json_encode() was roughly 174.86% faster than serialize()
Output for 5.5.11
JSON encoded in 0.010071992874146 seconds PHP serialized in 0.029293060302734 seconds json_encode() was roughly 190.84% faster than serialize()
Output for 5.5.10
JSON encoded in 0.010658979415894 seconds PHP serialized in 0.028966903686523 seconds json_encode() was roughly 171.76% faster than serialize()
Output for 5.5.9
JSON encoded in 0.0099961757659912 seconds PHP serialized in 0.028457164764404 seconds json_encode() was roughly 184.68% faster than serialize()
Output for 5.5.8
JSON encoded in 0.010370016098022 seconds PHP serialized in 0.028707027435303 seconds json_encode() was roughly 176.83% faster than serialize()
Output for 5.5.7
JSON encoded in 0.010349988937378 seconds PHP serialized in 0.02812385559082 seconds json_encode() was roughly 171.73% faster than serialize()
Output for 5.5.6
JSON encoded in 0.010056972503662 seconds PHP serialized in 0.029723882675171 seconds json_encode() was roughly 195.55% faster than serialize()
Output for 5.5.5
JSON encoded in 0.010380029678345 seconds PHP serialized in 0.028244972229004 seconds json_encode() was roughly 172.11% faster than serialize()
Output for 5.5.4
JSON encoded in 0.0099968910217285 seconds PHP serialized in 0.034832954406738 seconds json_encode() was roughly 248.44% faster than serialize()
Output for 5.5.3
JSON encoded in 0.010071039199829 seconds PHP serialized in 0.028726816177368 seconds json_encode() was roughly 185.24% faster than serialize()
Output for 5.5.2
JSON encoded in 0.0099761486053467 seconds PHP serialized in 0.02796196937561 seconds json_encode() was roughly 180.29% faster than serialize()
Output for 5.5.1
JSON encoded in 0.011580944061279 seconds PHP serialized in 0.027863025665283 seconds json_encode() was roughly 140.59% faster than serialize()
Output for 5.5.0
JSON encoded in 0.010071992874146 seconds PHP serialized in 0.027337074279785 seconds json_encode() was roughly 171.42% faster than serialize()
Output for 5.4.45
JSON encoded in 0.010089159011841 seconds PHP serialized in 0.0276198387146 seconds json_encode() was roughly 173.76% faster than serialize()
Output for 5.4.44
JSON encoded in 0.012433052062988 seconds PHP serialized in 0.027973890304565 seconds json_encode() was roughly 125.00% faster than serialize()
Output for 5.4.43
JSON encoded in 0.010303974151611 seconds PHP serialized in 0.028342008590698 seconds json_encode() was roughly 175.06% faster than serialize()
Output for 5.4.42
JSON encoded in 0.010298013687134 seconds PHP serialized in 0.028146982192993 seconds json_encode() was roughly 173.32% faster than serialize()
Output for 5.4.41
JSON encoded in 0.0098299980163574 seconds PHP serialized in 0.027369976043701 seconds json_encode() was roughly 178.43% faster than serialize()
Output for 5.4.40
JSON encoded in 0.0099880695343018 seconds PHP serialized in 0.027331113815308 seconds json_encode() was roughly 173.64% faster than serialize()
Output for 5.4.39
JSON encoded in 0.011665821075439 seconds PHP serialized in 0.030133962631226 seconds json_encode() was roughly 158.31% faster than serialize()
Output for 5.4.38
JSON encoded in 0.01050591468811 seconds PHP serialized in 0.029237031936646 seconds json_encode() was roughly 178.29% faster than serialize()
Output for 5.4.37
JSON encoded in 0.01006817817688 seconds PHP serialized in 0.02729606628418 seconds json_encode() was roughly 171.11% faster than serialize()
Output for 5.4.36
JSON encoded in 0.010033130645752 seconds PHP serialized in 0.027524948120117 seconds json_encode() was roughly 174.34% faster than serialize()
Output for 5.4.35
JSON encoded in 0.010465145111084 seconds PHP serialized in 0.028447151184082 seconds json_encode() was roughly 171.83% faster than serialize()
Output for 5.4.34
JSON encoded in 0.010063886642456 seconds PHP serialized in 0.027714014053345 seconds json_encode() was roughly 175.38% faster than serialize()
Output for 5.4.33
JSON encoded in 0.010108947753906 seconds PHP serialized in 0.02773904800415 seconds json_encode() was roughly 174.40% faster than serialize()
Output for 5.4.32
JSON encoded in 0.012375116348267 seconds PHP serialized in 0.028120994567871 seconds json_encode() was roughly 127.24% faster than serialize()
Output for 5.4.31
JSON encoded in 0.010025978088379 seconds PHP serialized in 0.028414964675903 seconds json_encode() was roughly 183.41% faster than serialize()
Output for 5.4.30
JSON encoded in 0.0097179412841797 seconds PHP serialized in 0.027576923370361 seconds json_encode() was roughly 183.77% faster than serialize()
Output for 5.4.29
JSON encoded in 0.0097038745880127 seconds PHP serialized in 0.030463933944702 seconds json_encode() was roughly 213.94% faster than serialize()
Output for 5.4.28
JSON encoded in 0.0098040103912354 seconds PHP serialized in 0.027095079421997 seconds json_encode() was roughly 176.37% faster than serialize()
Output for 5.4.27
JSON encoded in 0.0099508762359619 seconds PHP serialized in 0.028714895248413 seconds json_encode() was roughly 188.57% faster than serialize()
Output for 5.4.26
JSON encoded in 0.0099520683288574 seconds PHP serialized in 0.029669046401978 seconds json_encode() was roughly 198.12% faster than serialize()
Output for 5.4.25
JSON encoded in 0.010069847106934 seconds PHP serialized in 0.028146028518677 seconds json_encode() was roughly 179.51% faster than serialize()
Output for 5.4.24
JSON encoded in 0.0098280906677246 seconds PHP serialized in 0.027884960174561 seconds json_encode() was roughly 183.73% faster than serialize()
Output for 5.4.23
JSON encoded in 0.0097851753234863 seconds PHP serialized in 0.028036117553711 seconds json_encode() was roughly 186.52% faster than serialize()
Output for 5.4.22
JSON encoded in 0.0096628665924072 seconds PHP serialized in 0.028029918670654 seconds json_encode() was roughly 190.08% faster than serialize()
Output for 5.4.21
JSON encoded in 0.010236024856567 seconds PHP serialized in 0.028066873550415 seconds json_encode() was roughly 174.20% faster than serialize()
Output for 5.4.20
JSON encoded in 0.010049104690552 seconds PHP serialized in 0.030902147293091 seconds json_encode() was roughly 207.51% faster than serialize()
Output for 5.4.19
JSON encoded in 0.0097899436950684 seconds PHP serialized in 0.027590036392212 seconds json_encode() was roughly 181.82% faster than serialize()
Output for 5.4.18
JSON encoded in 0.009958028793335 seconds PHP serialized in 0.027100086212158 seconds json_encode() was roughly 172.14% faster than serialize()
Output for 5.4.17
JSON encoded in 0.0099248886108398 seconds PHP serialized in 0.027985095977783 seconds json_encode() was roughly 181.97% faster than serialize()
Output for 5.4.16
JSON encoded in 0.010145902633667 seconds PHP serialized in 0.027667045593262 seconds json_encode() was roughly 172.69% faster than serialize()
Output for 5.4.15
JSON encoded in 0.0096430778503418 seconds PHP serialized in 0.027426958084106 seconds json_encode() was roughly 184.42% faster than serialize()
Output for 5.4.14
JSON encoded in 0.0099120140075684 seconds PHP serialized in 0.028105974197388 seconds json_encode() was roughly 183.55% faster than serialize()
Output for 5.4.13
JSON encoded in 0.0098731517791748 seconds PHP serialized in 0.027074813842773 seconds json_encode() was roughly 174.23% faster than serialize()
Output for 5.4.12
JSON encoded in 0.010020971298218 seconds PHP serialized in 0.027439117431641 seconds json_encode() was roughly 173.82% faster than serialize()
Output for 5.4.11
JSON encoded in 0.0094990730285645 seconds PHP serialized in 0.027504920959473 seconds json_encode() was roughly 189.55% faster than serialize()
Output for 5.4.10
JSON encoded in 0.0098259449005127 seconds PHP serialized in 0.02754807472229 seconds json_encode() was roughly 180.36% faster than serialize()
Output for 5.4.9
JSON encoded in 0.010550975799561 seconds PHP serialized in 0.027918100357056 seconds json_encode() was roughly 164.60% faster than serialize()
Output for 5.4.8
JSON encoded in 0.011035919189453 seconds PHP serialized in 0.027384042739868 seconds json_encode() was roughly 148.14% faster than serialize()
Output for 5.4.7
JSON encoded in 0.011306047439575 seconds PHP serialized in 0.027615070343018 seconds json_encode() was roughly 144.25% faster than serialize()
Output for 5.4.6
JSON encoded in 0.01111912727356 seconds PHP serialized in 0.027255058288574 seconds json_encode() was roughly 145.12% faster than serialize()
Output for 5.4.5
JSON encoded in 0.010962963104248 seconds PHP serialized in 0.027824878692627 seconds json_encode() was roughly 153.81% faster than serialize()
Output for 5.4.4
JSON encoded in 0.010851144790649 seconds PHP serialized in 0.02733302116394 seconds json_encode() was roughly 151.89% faster than serialize()
Output for 5.4.3
JSON encoded in 0.011955976486206 seconds PHP serialized in 0.027496099472046 seconds json_encode() was roughly 129.98% faster than serialize()
Output for 5.4.2
JSON encoded in 0.01163911819458 seconds PHP serialized in 0.027587175369263 seconds json_encode() was roughly 137.02% faster than serialize()
Output for 5.4.1
JSON encoded in 0.011876106262207 seconds PHP serialized in 0.028033971786499 seconds json_encode() was roughly 136.05% faster than serialize()
Output for 5.4.0
JSON encoded in 0.012298107147217 seconds PHP serialized in 0.028464078903198 seconds json_encode() was roughly 131.45% faster than serialize()

preferences:
231.76 ms | 401 KiB | 341 Q