3v4l.org

run code in 500+ PHP versions simultaneously
<?php $str1 = '{"seq":1,"app_id":"567067343352427","app_ver":"26.0.0.10.86","build_num":"83827592","device_id":"28de00f9-64ff-466c-89bb-ca25b5896613","family_device_id":"28de00f9-64ff-466c-89bb-ca25b5896613","session_id":"f97c8348-b785-43b6-a318-3d0fa6a2a2b9","uid":"0","config_checksum":"41da2f124d3b089eab730386564c4361","config_version":"v2","channel":"regular","log_type":"client_event","data":[{"name":"ig_account_switched","time":"1521488145.589","extra":{"from_pk":"7149962663","to_pk":"1415622097","entry_point":"long_press_tab_bar","pk":"7149962663","release_channel":"beta","radio_type":"mobile-lte"}}]}'; $str2 = '{"seq":1,"app_id":"567067343352427","app_ver":"26.0.0.10.86","build_num":"83827592","device_id":"28de00f9-64ff-466c-89bb-ca25b5896613","family_device_id":"28de00f9-64ff-466c-89bb-ca25b5896613","session_id":"f97c8348-b785-43b6-a318-3d0fa6a2a2b9","uid":"0","config_checksum":"41da2f124d3b089eab730386564c4361","config_version":"v2","channel":"regular","log_type":"client_event","data":[{"name":"ig_account_switched","time":"1521488145.589","extra":{"from_pk":"7149962663","to_pk":"1415622097","entry_point":"long_press_tab_bar","pk":"7149962663","release_channel":"beta","radio_type":"mobile-lte"}}]}'; echo '<b>压缩中文比较</b>',PHP_EOL,PHP_EOL; compress_comp( $str1, 1000 ); // 压缩1000次 与 解压缩1000次比较 echo PHP_EOL; echo '<b>压缩英文数字比较</b>',PHP_EOL,PHP_EOL; compress_comp( $str2, 1000 ); // 压缩1000次 与 解压缩1000次比较 /* 压缩 */ function compress_comp( $str, $num ) { $func_compress = array( 'gzcompress', 'gzencode', 'gzdeflate', 'bzcompress' ); //echo '原文:' . $str ,PHP_EOL; echo '原文大小:' . strlen( $str ) ,PHP_EOL; for ( $i = 0, $length = count( $func_compress ); $i < $length; $i ++ ) { $starttime = get_microtime(); for ( $j = 0; $j < $num; $j ++ ) { $mstr = $func_compress[ $i ]( $str, 6 ); /*switch ( $func_compress[ $i ] ) { case 'gzcompress': $mstr = gzcompress( $str, 9 ); // 解压方法:gzuncompress break; case 'gzencode': $mstr = gzencode( $str, 9 ); // 解压方法:gzdecode php>=5.4 break; case 'gzdeflate': $mstr = gzdeflate( $str, 9 ); // 解压方法:gzinflate break; case 'bzcompress': $mstr = bzcompress( $str, 9 ); // 解压方法:bzdecompress break; }*/ } $endtime = get_microtime(); echo $func_compress[ $i ] . ' 压缩后大小:' . strlen( $mstr ) . ' 耗时:' . ($endtime - $starttime ) . 'ms',PHP_EOL; } } /* 获取 microtime */ function get_microtime() { return microtime( true ); }
Output for 7.3.12
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.020431041717529ms gzencode 压缩后大小:374 耗时:0.018741130828857ms gzdeflate 压缩后大小:356 耗时:0.018127918243408ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.3.11
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.020849943161011ms gzencode 压缩后大小:374 耗时:0.020246982574463ms gzdeflate 压缩后大小:356 耗时:0.019782066345215ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.3.10
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.032192945480347ms gzencode 压缩后大小:374 耗时:0.019273996353149ms gzdeflate 压缩后大小:356 耗时:0.018465995788574ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.3.9
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.02037787437439ms gzencode 压缩后大小:374 耗时:0.019001007080078ms gzdeflate 压缩后大小:356 耗时:0.018105983734131ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.3.8
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.021171092987061ms gzencode 压缩后大小:374 耗时:0.018931865692139ms gzdeflate 压缩后大小:356 耗时:0.018380165100098ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.3.7
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.018975019454956ms gzencode 压缩后大小:374 耗时:0.019053220748901ms gzdeflate 压缩后大小:356 耗时:0.018112897872925ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.3.6
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.018680095672607ms gzencode 压缩后大小:374 耗时:0.019124984741211ms gzdeflate 压缩后大小:356 耗时:0.018272876739502ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.3.5
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.018687963485718ms gzencode 压缩后大小:374 耗时:0.018982887268066ms gzdeflate 压缩后大小:356 耗时:0.018206119537354ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.3.4
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.018722057342529ms gzencode 压缩后大小:374 耗时:0.019055128097534ms gzdeflate 压缩后大小:356 耗时:0.018373012542725ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.3.3
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.021211862564087ms gzencode 压缩后大小:374 耗时:0.018903970718384ms gzdeflate 压缩后大小:356 耗时:0.018351078033447ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.3.2
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.019120931625366ms gzencode 压缩后大小:374 耗时:0.019144058227539ms gzdeflate 压缩后大小:356 耗时:0.018352031707764ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.3.1
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.018748998641968ms gzencode 压缩后大小:374 耗时:0.018872022628784ms gzdeflate 压缩后大小:356 耗时:0.018314838409424ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.3.0
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.018756866455078ms gzencode 压缩后大小:374 耗时:0.019052028656006ms gzdeflate 压缩后大小:356 耗时:0.018287897109985ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.24
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.019400835037231ms gzencode 压缩后大小:374 耗时:0.019054889678955ms gzdeflate 压缩后大小:356 耗时:0.018233060836792ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.23
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.020103931427002ms gzencode 压缩后大小:374 耗时:0.018923997879028ms gzdeflate 压缩后大小:356 耗时:0.018378019332886ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.22
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.018944025039673ms gzencode 压缩后大小:374 耗时:0.018867969512939ms gzdeflate 压缩后大小:356 耗时:0.018436908721924ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.21
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.021387100219727ms gzencode 压缩后大小:374 耗时:0.019243001937866ms gzdeflate 压缩后大小:356 耗时:0.01830792427063ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.20
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.018746137619019ms gzencode 压缩后大小:374 耗时:0.019053936004639ms gzdeflate 压缩后大小:356 耗时:0.018393039703369ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.19
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.020565032958984ms gzencode 压缩后大小:374 耗时:0.019219160079956ms gzdeflate 压缩后大小:356 耗时:0.018494129180908ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.18
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.022527933120728ms gzencode 压缩后大小:374 耗时:0.022472858428955ms gzdeflate 压缩后大小:356 耗时:0.018264055252075ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.17
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.019967079162598ms gzencode 压缩后大小:374 耗时:0.018909931182861ms gzdeflate 压缩后大小:356 耗时:0.01836085319519ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.16
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.018594026565552ms gzencode 压缩后大小:374 耗时:0.018887996673584ms gzdeflate 压缩后大小:356 耗时:0.018256902694702ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.15
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.020475149154663ms gzencode 压缩后大小:374 耗时:0.020802974700928ms gzdeflate 压缩后大小:356 耗时:0.020249843597412ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.14
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.020356893539429ms gzencode 压缩后大小:374 耗时:0.018921852111816ms gzdeflate 压缩后大小:356 耗时:0.018320083618164ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.13
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.01860499382019ms gzencode 压缩后大小:374 耗时:0.018916845321655ms gzdeflate 压缩后大小:356 耗时:0.018145084381104ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.12
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.01885199546814ms gzencode 压缩后大小:374 耗时:0.018959045410156ms gzdeflate 压缩后大小:356 耗时:0.018117904663086ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.11
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.01861310005188ms gzencode 压缩后大小:374 耗时:0.018665075302124ms gzdeflate 压缩后大小:356 耗时:0.017894983291626ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.10
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.021194934844971ms gzencode 压缩后大小:374 耗时:0.020643949508667ms gzdeflate 压缩后大小:356 耗时:0.019680976867676ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.9
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.018571853637695ms gzencode 压缩后大小:374 耗时:0.018846988677979ms gzdeflate 压缩后大小:356 耗时:0.018236875534058ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.8
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.0190110206604ms gzencode 压缩后大小:374 耗时:0.019273042678833ms gzdeflate 压缩后大小:356 耗时:0.018648862838745ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.7
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.020632028579712ms gzencode 压缩后大小:374 耗时:0.018913984298706ms gzdeflate 压缩后大小:356 耗时:0.018074035644531ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.6
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.018557071685791ms gzencode 压缩后大小:374 耗时:0.018826007843018ms gzdeflate 压缩后大小:356 耗时:0.018143892288208ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.5
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.020128965377808ms gzencode 压缩后大小:374 耗时:0.019011974334717ms gzdeflate 压缩后大小:356 耗时:0.018224000930786ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.4
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.020272016525269ms gzencode 压缩后大小:374 耗时:0.018834829330444ms gzdeflate 压缩后大小:356 耗时:0.018046855926514ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.3
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.019021987915039ms gzencode 压缩后大小:374 耗时:0.019049882888794ms gzdeflate 压缩后大小:356 耗时:0.018105983734131ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.2
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.020431041717529ms gzencode 压缩后大小:374 耗时:0.0191969871521ms gzdeflate 压缩后大小:356 耗时:0.018397808074951ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.1
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.019585132598877ms gzencode 压缩后大小:374 耗时:0.018779993057251ms gzdeflate 压缩后大小:356 耗时:0.018011808395386ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.2.0
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.01858115196228ms gzencode 压缩后大小:374 耗时:0.018998861312866ms gzdeflate 压缩后大小:356 耗时:0.018152952194214ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.33
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.022079944610596ms gzencode 压缩后大小:374 耗时:0.021356105804443ms gzdeflate 压缩后大小:356 耗时:0.020904064178467ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.32
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.0191810131073ms gzencode 压缩后大小:374 耗时:0.019013166427612ms gzdeflate 压缩后大小:356 耗时:0.018196105957031ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.31
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.020662069320679ms gzencode 压缩后大小:374 耗时:0.01909613609314ms gzdeflate 压缩后大小:356 耗时:0.018234968185425ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.30
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.021009922027588ms gzencode 压缩后大小:374 耗时:0.019160032272339ms gzdeflate 压缩后大小:356 耗时:0.018573045730591ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.29
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.018737077713013ms gzencode 压缩后大小:374 耗时:0.019049882888794ms gzdeflate 压缩后大小:356 耗时:0.018301010131836ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.28
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.01894998550415ms gzencode 压缩后大小:374 耗时:0.018913984298706ms gzdeflate 压缩后大小:356 耗时:0.018370151519775ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.27
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.022470951080322ms gzencode 压缩后大小:374 耗时:0.0209801197052ms gzdeflate 压缩后大小:356 耗时:0.020180940628052ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.26
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.019243001937866ms gzencode 压缩后大小:374 耗时:0.018866062164307ms gzdeflate 压缩后大小:356 耗时:0.018121957778931ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.25
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.020076990127563ms gzencode 压缩后大小:374 耗时:0.018844127655029ms gzdeflate 压缩后大小:356 耗时:0.018129825592041ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.15
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.026427984237671ms gzencode 压缩后大小:374 耗时:0.02403712272644ms gzdeflate 压缩后大小:356 耗时:0.022650003433228ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.14
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.025447130203247ms gzencode 压缩后大小:374 耗时:0.023453950881958ms gzdeflate 压缩后大小:356 耗时:0.030095100402832ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.13
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.038213014602661ms gzencode 压缩后大小:374 耗时:0.026670932769775ms gzdeflate 压缩后大小:356 耗时:0.026689052581787ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.12
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.02409291267395ms gzencode 压缩后大小:374 耗时:0.026247978210449ms gzdeflate 压缩后大小:356 耗时:0.025776863098145ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.11
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.03662109375ms gzencode 压缩后大小:374 耗时:0.038583993911743ms gzdeflate 压缩后大小:356 耗时:0.031477928161621ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.10
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.026337862014771ms gzencode 压缩后大小:374 耗时:0.023746967315674ms gzdeflate 压缩后大小:356 耗时:0.025683879852295ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.9
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.023818016052246ms gzencode 压缩后大小:374 耗时:0.025796175003052ms gzdeflate 压缩后大小:356 耗时:0.02508807182312ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.8
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.024663925170898ms gzencode 压缩后大小:374 耗时:0.02475905418396ms gzdeflate 压缩后大小:356 耗时:0.023122072219849ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.7
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.023725986480713ms gzencode 压缩后大小:374 耗时:0.023343086242676ms gzdeflate 压缩后大小:356 耗时:0.022079944610596ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.6
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.022452831268311ms gzencode 压缩后大小:374 耗时:0.023010969161987ms gzdeflate 压缩后大小:356 耗时:0.02198600769043ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.5
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.026695966720581ms gzencode 压缩后大小:374 耗时:0.026319026947021ms gzdeflate 压缩后大小:356 耗时:0.024852991104126ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.4
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.038916110992432ms gzencode 压缩后大小:374 耗时:0.024739027023315ms gzdeflate 压缩后大小:356 耗时:0.025058031082153ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.3
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.02479100227356ms gzencode 压缩后大小:374 耗时:0.025191068649292ms gzdeflate 压缩后大小:356 耗时:0.024650096893311ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.2
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.024049997329712ms gzencode 压缩后大小:374 耗时:0.025561094284058ms gzdeflate 压缩后大小:356 耗时:0.023369073867798ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.1
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.023573875427246ms gzencode 压缩后大小:374 耗时:0.023787975311279ms gzdeflate 压缩后大小:356 耗时:0.022473812103271ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.
Output for 7.1.0
<b>压缩中文比较</b> 原文大小:598 gzcompress 压缩后大小:362 耗时:0.022947072982788ms gzencode 压缩后大小:374 耗时:0.023888111114502ms gzdeflate 压缩后大小:356 耗时:0.023993015289307ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/cX4La:18 Stack trace: #0 /in/cX4La(5): compress_comp('{"seq":1,"app_i...', 1000) #1 {main} thrown in /in/cX4La on line 18
Process exited with code 255.

preferences:
63.32 ms | 760 KiB | 4 Q