3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str1 = '布局 1 介绍 布局,简单来说就是设置元素的大小和位置。 Ext 的布局系统包括组件,布局,容器,容器是一种特殊的组件,可以管理组件的大小和位置。 容器是通过 doLayout 来重新计算布局,并更新 DOM. 2 手工布局是不必要的,框架会为你自动处理。'; $str2 = '!@#$%^&*()QWERTYUIOPSDFGHJKL!@#$%^&*()QWERTYUIOPSDFGHJKL:ZXCVBNMa!@#$%^&*()ERTYUIODFGHJKLXCVBNM@#$%^&*()RTYUIOPD:ZXCVBNM#!@#!@#$%^&*()QWERTYUIOPSDFGHJKL:ZXCVBNM-!@#$%^&*()ERTYUIODFGHJKLXCVBNM@#$%^&*()RTYUIOPD$%^&*()ERTYUIODFGHJ!@#$%^&*()QWERTYUIOPSDFGHJKL:ZXCVBNM]!@#$%^&*()ERTYUIODFGHJKLXCVBNM@#$%^&*()RTYUIOPDKLXCVBNM@#$%^&*()RTYUIOPDFGHJKLCVBNMFGHJTYU%^&RFGHJ4d56g7h8ui7h8ujirqwerqh8'; 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 8.1.3
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01422905921936ms gzencode 压缩后大小:263 耗时:0.014196872711182ms gzdeflate 压缩后大小:245 耗时:0.0138099193573ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.1.2
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014214992523193ms gzencode 压缩后大小:263 耗时:0.014320135116577ms gzdeflate 压缩后大小:245 耗时:0.014118909835815ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.1.1
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014247179031372ms gzencode 压缩后大小:263 耗时:0.014381170272827ms gzdeflate 压缩后大小:245 耗时:0.014211177825928ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.1.0
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014539003372192ms gzencode 压缩后大小:263 耗时:0.014443159103394ms gzdeflate 压缩后大小:245 耗时:0.013888120651245ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.0.16
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014521837234497ms gzencode 压缩后大小:263 耗时:0.014298915863037ms gzdeflate 压缩后大小:245 耗时:0.013837099075317ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.0.15
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014257907867432ms gzencode 压缩后大小:263 耗时:0.014264106750488ms gzdeflate 压缩后大小:245 耗时:0.013806104660034ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.0.14
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.0141921043396ms gzencode 压缩后大小:263 耗时:0.014270067214966ms gzdeflate 压缩后大小:245 耗时:0.013813972473145ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.0.13
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014292001724243ms gzencode 压缩后大小:263 耗时:0.014401197433472ms gzdeflate 压缩后大小:245 耗时:0.013881921768188ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.0.12
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014523983001709ms gzencode 压缩后大小:263 耗时:0.014559984207153ms gzdeflate 压缩后大小:245 耗时:0.013854026794434ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.0.11
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014317989349365ms gzencode 压缩后大小:263 耗时:0.014398097991943ms gzdeflate 压缩后大小:245 耗时:0.013948917388916ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.0.10
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014857053756714ms gzencode 压缩后大小:263 耗时:0.015899896621704ms gzdeflate 压缩后大小:245 耗时:0.014715194702148ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.0.9
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014198064804077ms gzencode 压缩后大小:263 耗时:0.014198064804077ms gzdeflate 压缩后大小:245 耗时:0.013774871826172ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.0.8
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014378070831299ms gzencode 压缩后大小:263 耗时:0.014387130737305ms gzdeflate 压缩后大小:245 耗时:0.013969898223877ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.0.7
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01432204246521ms gzencode 压缩后大小:263 耗时:0.014368057250977ms gzdeflate 压缩后大小:245 耗时:0.014030933380127ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.0.6
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01452898979187ms gzencode 压缩后大小:263 耗时:0.01451301574707ms gzdeflate 压缩后大小:245 耗时:0.014071941375732ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.0.5
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014384984970093ms gzencode 压缩后大小:263 耗时:0.014482021331787ms gzdeflate 压缩后大小:245 耗时:0.014039993286133ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.0.3
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01498007774353ms gzencode 压缩后大小:263 耗时:0.015749931335449ms gzdeflate 压缩后大小:245 耗时:0.014503002166748ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.0.2
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014528036117554ms gzencode 压缩后大小:263 耗时:0.014514923095703ms gzdeflate 压缩后大小:245 耗时:0.014050960540771ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.0.1
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014948844909668ms gzencode 压缩后大小:263 耗时:0.015122890472412ms gzdeflate 压缩后大小:245 耗时:0.015466928482056ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 8.0.0
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014436006546021ms gzencode 压缩后大小:263 耗时:0.014481067657471ms gzdeflate 压缩后大小:245 耗时:0.014028787612915ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.28
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014600038528442ms gzencode 压缩后大小:263 耗时:0.01438307762146ms gzdeflate 压缩后大小:245 耗时:0.013898849487305ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.27
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014299869537354ms gzencode 压缩后大小:263 耗时:0.014301061630249ms gzdeflate 压缩后大小:245 耗时:0.013890981674194ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.26
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014226913452148ms gzencode 压缩后大小:263 耗时:0.014348030090332ms gzdeflate 压缩后大小:245 耗时:0.013944864273071ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.25
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014280796051025ms gzencode 压缩后大小:263 耗时:0.014311075210571ms gzdeflate 压缩后大小:245 耗时:0.013858795166016ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.24
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014324188232422ms gzencode 压缩后大小:263 耗时:0.014466047286987ms gzdeflate 压缩后大小:245 耗时:0.013933897018433ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.23
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014209985733032ms gzencode 压缩后大小:263 耗时:0.014265060424805ms gzdeflate 压缩后大小:245 耗时:0.013805866241455ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.22
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014285087585449ms gzencode 压缩后大小:263 耗时:0.014334917068481ms gzdeflate 压缩后大小:245 耗时:0.013893127441406ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.21
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014251947402954ms gzencode 压缩后大小:263 耗时:0.01426887512207ms gzdeflate 压缩后大小:245 耗时:0.013859033584595ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.20
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014376878738403ms gzencode 压缩后大小:263 耗时:0.01440691947937ms gzdeflate 压缩后大小:245 耗时:0.013926029205322ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.19
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014311790466309ms gzencode 压缩后大小:263 耗时:0.014235973358154ms gzdeflate 压缩后大小:245 耗时:0.013787031173706ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.18
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014429092407227ms gzencode 压缩后大小:263 耗时:0.014405012130737ms gzdeflate 压缩后大小:245 耗时:0.013782978057861ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.16
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01450514793396ms gzencode 压缩后大小:263 耗时:0.014311790466309ms gzdeflate 压缩后大小:245 耗时:0.013832092285156ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.15
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014264106750488ms gzencode 压缩后大小:263 耗时:0.014266014099121ms gzdeflate 压缩后大小:245 耗时:0.013744115829468ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.14
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014392137527466ms gzencode 压缩后大小:263 耗时:0.014543056488037ms gzdeflate 压缩后大小:245 耗时:0.013963937759399ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.13
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014264106750488ms gzencode 压缩后大小:263 耗时:0.014300107955933ms gzdeflate 压缩后大小:245 耗时:0.013888120651245ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.12
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014291048049927ms gzencode 压缩后大小:263 耗时:0.014907121658325ms gzdeflate 压缩后大小:245 耗时:0.014868021011353ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.11
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014413118362427ms gzencode 压缩后大小:263 耗时:0.014274120330811ms gzdeflate 压缩后大小:245 耗时:0.013824939727783ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.10
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014354228973389ms gzencode 压缩后大小:263 耗时:0.014343023300171ms gzdeflate 压缩后大小:245 耗时:0.013912916183472ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.9
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014508008956909ms gzencode 压缩后大小:263 耗时:0.014246940612793ms gzdeflate 压缩后大小:245 耗时:0.013776063919067ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.8
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014339923858643ms gzencode 压缩后大小:263 耗时:0.014338970184326ms gzdeflate 压缩后大小:245 耗时:0.013872146606445ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.7
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014384984970093ms gzencode 压缩后大小:263 耗时:0.014242887496948ms gzdeflate 压缩后大小:245 耗时:0.013888120651245ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.6
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014337062835693ms gzencode 压缩后大小:263 耗时:0.014344930648804ms gzdeflate 压缩后大小:245 耗时:0.013906955718994ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.5
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014731168746948ms gzencode 压缩后大小:263 耗时:0.014282941818237ms gzdeflate 压缩后大小:245 耗时:0.013832092285156ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.4
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014672040939331ms gzencode 压缩后大小:263 耗时:0.014219999313354ms gzdeflate 压缩后大小:245 耗时:0.013844013214111ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.3
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014482975006104ms gzencode 压缩后大小:263 耗时:0.014180898666382ms gzdeflate 压缩后大小:245 耗时:0.013754844665527ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.2
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014391899108887ms gzencode 压缩后大小:263 耗时:0.014356136322021ms gzdeflate 压缩后大小:245 耗时:0.013861894607544ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.1
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014541864395142ms gzencode 压缩后大小:263 耗时:0.014228105545044ms gzdeflate 压缩后大小:245 耗时:0.013803005218506ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.4.0
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.015148162841797ms gzencode 压缩后大小:263 耗时:0.014852046966553ms gzdeflate 压缩后大小:245 耗时:0.014436006546021ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.33
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01446795463562ms gzencode 压缩后大小:263 耗时:0.014427900314331ms gzdeflate 压缩后大小:245 耗时:0.014013051986694ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.32
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014580011367798ms gzencode 压缩后大小:263 耗时:0.01442289352417ms gzdeflate 压缩后大小:245 耗时:0.013913869857788ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.31
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014337062835693ms gzencode 压缩后大小:263 耗时:0.014400005340576ms gzdeflate 压缩后大小:245 耗时:0.013938903808594ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.30
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014344930648804ms gzencode 压缩后大小:263 耗时:0.014436006546021ms gzdeflate 压缩后大小:245 耗时:0.013985872268677ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.29
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014403820037842ms gzencode 压缩后大小:263 耗时:0.014374017715454ms gzdeflate 压缩后大小:245 耗时:0.013942003250122ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.28
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014309167861938ms gzencode 压缩后大小:263 耗时:0.014322996139526ms gzdeflate 压缩后大小:245 耗时:0.013919830322266ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.27
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014540195465088ms gzencode 压缩后大小:263 耗时:0.014527797698975ms gzdeflate 压缩后大小:245 耗时:0.015650987625122ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.26
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014361143112183ms gzencode 压缩后大小:263 耗时:0.01439094543457ms gzdeflate 压缩后大小:245 耗时:0.013906002044678ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.25
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014235019683838ms gzencode 压缩后大小:263 耗时:0.014266967773438ms gzdeflate 压缩后大小:245 耗时:0.013965129852295ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.24
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014593124389648ms gzencode 压缩后大小:263 耗时:0.014726877212524ms gzdeflate 压缩后大小:245 耗时:0.014128923416138ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.23
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014595031738281ms gzencode 压缩后大小:263 耗时:0.014421224594116ms gzdeflate 压缩后大小:245 耗时:0.013952970504761ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.22
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.015611886978149ms gzencode 压缩后大小:263 耗时:0.015722036361694ms gzdeflate 压缩后大小:245 耗时:0.01376485824585ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.21
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014247894287109ms gzencode 压缩后大小:263 耗时:0.01423192024231ms gzdeflate 压缩后大小:245 耗时:0.013917922973633ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.20
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014266967773438ms gzencode 压缩后大小:263 耗时:0.014478921890259ms gzdeflate 压缩后大小:245 耗时:0.01399302482605ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.19
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014478921890259ms gzencode 压缩后大小:263 耗时:0.014599084854126ms gzdeflate 压缩后大小:245 耗时:0.014300107955933ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.18
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014288902282715ms gzencode 压缩后大小:263 耗时:0.014440059661865ms gzdeflate 压缩后大小:245 耗时:0.013952016830444ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.17
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014330863952637ms gzencode 压缩后大小:263 耗时:0.014340877532959ms gzdeflate 压缩后大小:245 耗时:0.013896942138672ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.16
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014337062835693ms gzencode 压缩后大小:263 耗时:0.01435399055481ms gzdeflate 压缩后大小:245 耗时:0.013950824737549ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.15
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014595031738281ms gzencode 压缩后大小:263 耗时:0.016072988510132ms gzdeflate 压缩后大小:245 耗时:0.015044927597046ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.14
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014372110366821ms gzencode 压缩后大小:263 耗时:0.014481067657471ms gzdeflate 压缩后大小:245 耗时:0.014066934585571ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.13
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014971017837524ms gzencode 压缩后大小:263 耗时:0.016688108444214ms gzdeflate 压缩后大小:245 耗时:0.014981985092163ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.12
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014330863952637ms gzencode 压缩后大小:263 耗时:0.014388084411621ms gzdeflate 压缩后大小:245 耗时:0.014081001281738ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.11
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014343023300171ms gzencode 压缩后大小:263 耗时:0.014397144317627ms gzdeflate 压缩后大小:245 耗时:0.013860940933228ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.10
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014363050460815ms gzencode 压缩后大小:263 耗时:0.014401912689209ms gzdeflate 压缩后大小:245 耗时:0.013902902603149ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.9
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014314889907837ms gzencode 压缩后大小:263 耗时:0.01435399055481ms gzdeflate 压缩后大小:245 耗时:0.013839960098267ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.8
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014460802078247ms gzencode 压缩后大小:263 耗时:0.01451587677002ms gzdeflate 压缩后大小:245 耗时:0.014010906219482ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.7
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014433860778809ms gzencode 压缩后大小:263 耗时:0.01441502571106ms gzdeflate 压缩后大小:245 耗时:0.014132022857666ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.6
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014257907867432ms gzencode 压缩后大小:263 耗时:0.014484882354736ms gzdeflate 压缩后大小:245 耗时:0.013852119445801ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.5
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.015087127685547ms gzencode 压缩后大小:263 耗时:0.014989852905273ms gzdeflate 压缩后大小:245 耗时:0.014550924301147ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.4
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014363050460815ms gzencode 压缩后大小:263 耗时:0.014545917510986ms gzdeflate 压缩后大小:245 耗时:0.014047145843506ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.3
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014433860778809ms gzencode 压缩后大小:263 耗时:0.014258861541748ms gzdeflate 压缩后大小:245 耗时:0.013972043991089ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.2
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01429009437561ms gzencode 压缩后大小:263 耗时:0.01439094543457ms gzdeflate 压缩后大小:245 耗时:0.013865947723389ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.1
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014316082000732ms gzencode 压缩后大小:263 耗时:0.01435399055481ms gzdeflate 压缩后大小:245 耗时:0.013842105865479ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.3.0
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.015011072158813ms gzencode 压缩后大小:263 耗时:0.014605045318604ms gzdeflate 压缩后大小:245 耗时:0.013906955718994ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.34
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01447606086731ms gzencode 压缩后大小:263 耗时:0.014443874359131ms gzdeflate 压缩后大小:245 耗时:0.014008045196533ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.33
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014482021331787ms gzencode 压缩后大小:263 耗时:0.014405012130737ms gzdeflate 压缩后大小:245 耗时:0.013865947723389ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.32
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.015400171279907ms gzencode 压缩后大小:263 耗时:0.015786170959473ms gzdeflate 压缩后大小:245 耗时:0.013850212097168ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.31
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014414072036743ms gzencode 压缩后大小:263 耗时:0.014360904693604ms gzdeflate 压缩后大小:245 耗时:0.013950824737549ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.30
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014446020126343ms gzencode 压缩后大小:263 耗时:0.01432991027832ms gzdeflate 压缩后大小:245 耗时:0.013869047164917ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.29
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014349937438965ms gzencode 压缩后大小:263 耗时:0.014328956604004ms gzdeflate 压缩后大小:245 耗时:0.013930797576904ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.28
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014618873596191ms gzencode 压缩后大小:263 耗时:0.014398097991943ms gzdeflate 压缩后大小:245 耗时:0.013975858688354ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.27
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014523029327393ms gzencode 压缩后大小:263 耗时:0.014519929885864ms gzdeflate 压缩后大小:245 耗时:0.014081954956055ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.26
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014497995376587ms gzencode 压缩后大小:263 耗时:0.014467000961304ms gzdeflate 压缩后大小:245 耗时:0.013992786407471ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.25
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01439094543457ms gzencode 压缩后大小:263 耗时:0.014424085617065ms gzdeflate 压缩后大小:245 耗时:0.013994932174683ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.24
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014524936676025ms gzencode 压缩后大小:263 耗时:0.014416933059692ms gzdeflate 压缩后大小:245 耗时:0.014034986495972ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.23
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014564990997314ms gzencode 压缩后大小:263 耗时:0.014388084411621ms gzdeflate 压缩后大小:245 耗时:0.013844013214111ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.22
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014646053314209ms gzencode 压缩后大小:263 耗时:0.014755010604858ms gzdeflate 压缩后大小:245 耗时:0.014133214950562ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.21
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014523983001709ms gzencode 压缩后大小:263 耗时:0.014460802078247ms gzdeflate 压缩后大小:245 耗时:0.013949871063232ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.20
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014424085617065ms gzencode 压缩后大小:263 耗时:0.014380931854248ms gzdeflate 压缩后大小:245 耗时:0.013889074325562ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.19
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014635801315308ms gzencode 压缩后大小:263 耗时:0.014581918716431ms gzdeflate 压缩后大小:245 耗时:0.013885974884033ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.18
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014437913894653ms gzencode 压缩后大小:263 耗时:0.014472007751465ms gzdeflate 压缩后大小:245 耗时:0.014028072357178ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.17
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014233112335205ms gzencode 压缩后大小:263 耗时:0.014396905899048ms gzdeflate 压缩后大小:245 耗时:0.013897895812988ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.16
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01512598991394ms gzencode 压缩后大小:263 耗时:0.014440059661865ms gzdeflate 压缩后大小:245 耗时:0.014238834381104ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.15
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014312982559204ms gzencode 压缩后大小:263 耗时:0.014415979385376ms gzdeflate 压缩后大小:245 耗时:0.014101028442383ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.14
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014430999755859ms gzencode 压缩后大小:263 耗时:0.01452898979187ms gzdeflate 压缩后大小:245 耗时:0.013983011245728ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.13
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014418125152588ms gzencode 压缩后大小:263 耗时:0.014379978179932ms gzdeflate 压缩后大小:245 耗时:0.013956069946289ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.12
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014500856399536ms gzencode 压缩后大小:263 耗时:0.014486074447632ms gzdeflate 压缩后大小:245 耗时:0.013963937759399ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.11
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014569044113159ms gzencode 压缩后大小:263 耗时:0.014529943466187ms gzdeflate 压缩后大小:245 耗时:0.014082193374634ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.10
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014438152313232ms gzencode 压缩后大小:263 耗时:0.014503955841064ms gzdeflate 压缩后大小:245 耗时:0.013947010040283ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.9
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014209985733032ms gzencode 压缩后大小:263 耗时:0.014317989349365ms gzdeflate 压缩后大小:245 耗时:0.01380181312561ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.8
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014392137527466ms gzencode 压缩后大小:263 耗时:0.014332056045532ms gzdeflate 压缩后大小:245 耗时:0.013886213302612ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.7
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014219999313354ms gzencode 压缩后大小:263 耗时:0.014277935028076ms gzdeflate 压缩后大小:245 耗时:0.013796806335449ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.6
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014310836791992ms gzencode 压缩后大小:263 耗时:0.014332056045532ms gzdeflate 压缩后大小:245 耗时:0.013869047164917ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.5
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01432204246521ms gzencode 压缩后大小:263 耗时:0.014364957809448ms gzdeflate 压缩后大小:245 耗时:0.013932943344116ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.4
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01451587677002ms gzencode 压缩后大小:263 耗时:0.014292001724243ms gzdeflate 压缩后大小:245 耗时:0.013870000839233ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.3
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014302015304565ms gzencode 压缩后大小:263 耗时:0.014374017715454ms gzdeflate 压缩后大小:245 耗时:0.01406717300415ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.2
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014213085174561ms gzencode 压缩后大小:263 耗时:0.014408826828003ms gzdeflate 压缩后大小:245 耗时:0.013860940933228ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.1
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014377117156982ms gzencode 压缩后大小:263 耗时:0.014400005340576ms gzdeflate 压缩后大小:245 耗时:0.013903141021729ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.2.0
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014242887496948ms gzencode 压缩后大小:263 耗时:0.014288902282715ms gzdeflate 压缩后大小:245 耗时:0.013835906982422ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.33
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014189004898071ms gzencode 压缩后大小:263 耗时:0.014333009719849ms gzdeflate 压缩后大小:245 耗时:0.013959169387817ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.32
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014415979385376ms gzencode 压缩后大小:263 耗时:0.014517068862915ms gzdeflate 压缩后大小:245 耗时:0.013900995254517ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.31
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014415979385376ms gzencode 压缩后大小:263 耗时:0.014336109161377ms gzdeflate 压缩后大小:245 耗时:0.013910055160522ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.30
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014344930648804ms gzencode 压缩后大小:263 耗时:0.014355182647705ms gzdeflate 压缩后大小:245 耗时:0.013780117034912ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.29
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014283895492554ms gzencode 压缩后大小:263 耗时:0.014397859573364ms gzdeflate 压缩后大小:245 耗时:0.013925075531006ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.28
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014395952224731ms gzencode 压缩后大小:263 耗时:0.014514923095703ms gzdeflate 压缩后大小:245 耗时:0.013976097106934ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.27
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014313936233521ms gzencode 压缩后大小:263 耗时:0.014302968978882ms gzdeflate 压缩后大小:245 耗时:0.013865947723389ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.26
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014501810073853ms gzencode 压缩后大小:263 耗时:0.014383792877197ms gzdeflate 压缩后大小:245 耗时:0.013862133026123ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.25
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01435399055481ms gzencode 压缩后大小:263 耗时:0.014777183532715ms gzdeflate 压缩后大小:245 耗时:0.014006853103638ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.24
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014338970184326ms gzencode 压缩后大小:263 耗时:0.014283895492554ms gzdeflate 压缩后大小:245 耗时:0.01390814781189ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.23
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014408111572266ms gzencode 压缩后大小:263 耗时:0.014443159103394ms gzdeflate 压缩后大小:245 耗时:0.014015913009644ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.22
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014264106750488ms gzencode 压缩后大小:263 耗时:0.014503955841064ms gzdeflate 压缩后大小:245 耗时:0.014044046401978ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.21
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014318943023682ms gzencode 压缩后大小:263 耗时:0.014405965805054ms gzdeflate 压缩后大小:245 耗时:0.014060020446777ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.20
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014480829238892ms gzencode 压缩后大小:263 耗时:0.014494895935059ms gzdeflate 压缩后大小:245 耗时:0.014018058776855ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.19
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.015598058700562ms gzencode 压缩后大小:263 耗时:0.014312028884888ms gzdeflate 压缩后大小:245 耗时:0.013926982879639ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.18
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014463901519775ms gzencode 压缩后大小:263 耗时:0.014580965042114ms gzdeflate 压缩后大小:245 耗时:0.014122009277344ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.17
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014286041259766ms gzencode 压缩后大小:263 耗时:0.01433801651001ms gzdeflate 压缩后大小:245 耗时:0.013869047164917ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.16
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014214038848877ms gzencode 压缩后大小:263 耗时:0.014341115951538ms gzdeflate 压缩后大小:245 耗时:0.013967990875244ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.15
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014280080795288ms gzencode 压缩后大小:263 耗时:0.014417171478271ms gzdeflate 压缩后大小:245 耗时:0.013936042785645ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.14
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014437913894653ms gzencode 压缩后大小:263 耗时:0.015091180801392ms gzdeflate 压缩后大小:245 耗时:0.014316082000732ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.13
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014369010925293ms gzencode 压缩后大小:263 耗时:0.014325857162476ms gzdeflate 压缩后大小:245 耗时:0.013966083526611ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.12
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014293193817139ms gzencode 压缩后大小:263 耗时:0.014331102371216ms gzdeflate 压缩后大小:245 耗时:0.013828992843628ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.11
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01417088508606ms gzencode 压缩后大小:263 耗时:0.014333009719849ms gzdeflate 压缩后大小:245 耗时:0.013901948928833ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.10
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014410972595215ms gzencode 压缩后大小:263 耗时:0.014377117156982ms gzdeflate 压缩后大小:245 耗时:0.014245986938477ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.9
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014299154281616ms gzencode 压缩后大小:263 耗时:0.014285087585449ms gzdeflate 压缩后大小:245 耗时:0.013921976089478ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.8
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014379978179932ms gzencode 压缩后大小:263 耗时:0.014564990997314ms gzdeflate 压缩后大小:245 耗时:0.013944149017334ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.7
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014340162277222ms gzencode 压缩后大小:263 耗时:0.014425992965698ms gzdeflate 压缩后大小:245 耗时:0.013942003250122ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.6
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014364957809448ms gzencode 压缩后大小:263 耗时:0.014474153518677ms gzdeflate 压缩后大小:245 耗时:0.014379978179932ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.5
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01446795463562ms gzencode 压缩后大小:263 耗时:0.014433145523071ms gzdeflate 压缩后大小:245 耗时:0.013840198516846ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.4
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01465106010437ms gzencode 压缩后大小:263 耗时:0.014467000961304ms gzdeflate 压缩后大小:245 耗时:0.014005899429321ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.3
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014466047286987ms gzencode 压缩后大小:263 耗时:0.014523983001709ms gzdeflate 压缩后大小:245 耗时:0.014092922210693ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.2
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014377117156982ms gzencode 压缩后大小:263 耗时:0.014518976211548ms gzdeflate 压缩后大小:245 耗时:0.013913154602051ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.1
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014228105545044ms gzencode 压缩后大小:263 耗时:0.01432204246521ms gzdeflate 压缩后大小:245 耗时:0.013839960098267ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.1.0
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014387130737305ms gzencode 压缩后大小:263 耗时:0.014414072036743ms gzdeflate 压缩后大小:245 耗时:0.013963937759399ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.33
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014456033706665ms gzencode 压缩后大小:263 耗时:0.014289140701294ms gzdeflate 压缩后大小:245 耗时:0.013921022415161ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.32
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014662027359009ms gzencode 压缩后大小:263 耗时:0.014286041259766ms gzdeflate 压缩后大小:245 耗时:0.013849020004272ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.31
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014571905136108ms gzencode 压缩后大小:263 耗时:0.01439905166626ms gzdeflate 压缩后大小:245 耗时:0.013919115066528ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.30
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01442813873291ms gzencode 压缩后大小:263 耗时:0.01445198059082ms gzdeflate 压缩后大小:245 耗时:0.013899087905884ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.29
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014642953872681ms gzencode 压缩后大小:263 耗时:0.01451587677002ms gzdeflate 压缩后大小:245 耗时:0.013973951339722ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.28
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.017352104187012ms gzencode 压缩后大小:263 耗时:0.015686988830566ms gzdeflate 压缩后大小:245 耗时:0.013954877853394ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.27
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014209985733032ms gzencode 压缩后大小:263 耗时:0.014257907867432ms gzdeflate 压缩后大小:245 耗时:0.013892889022827ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.26
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014398097991943ms gzencode 压缩后大小:263 耗时:0.014403820037842ms gzdeflate 压缩后大小:245 耗时:0.013864994049072ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.25
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014285802841187ms gzencode 压缩后大小:263 耗时:0.014432907104492ms gzdeflate 压缩后大小:245 耗时:0.013905048370361ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.24
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014254093170166ms gzencode 压缩后大小:263 耗时:0.01440691947937ms gzdeflate 压缩后大小:245 耗时:0.013909816741943ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.23
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014302968978882ms gzencode 压缩后大小:263 耗时:0.014312982559204ms gzdeflate 压缩后大小:245 耗时:0.013878107070923ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.22
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.0141761302948ms gzencode 压缩后大小:263 耗时:0.014241218566895ms gzdeflate 压缩后大小:245 耗时:0.013869047164917ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.21
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014271974563599ms gzencode 压缩后大小:263 耗时:0.014409065246582ms gzdeflate 压缩后大小:245 耗时:0.013890981674194ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.20
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014363050460815ms gzencode 压缩后大小:263 耗时:0.014438152313232ms gzdeflate 压缩后大小:245 耗时:0.013997793197632ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.19
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014272928237915ms gzencode 压缩后大小:263 耗时:0.01451301574707ms gzdeflate 压缩后大小:245 耗时:0.014123916625977ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.18
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014293909072876ms gzencode 压缩后大小:263 耗时:0.014534950256348ms gzdeflate 压缩后大小:245 耗时:0.013906002044678ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.17
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014610052108765ms gzencode 压缩后大小:263 耗时:0.014410018920898ms gzdeflate 压缩后大小:245 耗时:0.01400899887085ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.16
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014285087585449ms gzencode 压缩后大小:263 耗时:0.014481067657471ms gzdeflate 压缩后大小:245 耗时:0.013878107070923ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.15
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014495134353638ms gzencode 压缩后大小:263 耗时:0.014387130737305ms gzdeflate 压缩后大小:245 耗时:0.013983964920044ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.14
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014303922653198ms gzencode 压缩后大小:263 耗时:0.014345169067383ms gzdeflate 压缩后大小:245 耗时:0.013989925384521ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.13
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014260053634644ms gzencode 压缩后大小:263 耗时:0.014523983001709ms gzdeflate 压缩后大小:245 耗时:0.014004945755005ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.12
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014352083206177ms gzencode 压缩后大小:263 耗时:0.014425992965698ms gzdeflate 压缩后大小:245 耗时:0.01396918296814ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.11
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014125108718872ms gzencode 压缩后大小:263 耗时:0.014230966567993ms gzdeflate 压缩后大小:245 耗时:0.013860940933228ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.10
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014336109161377ms gzencode 压缩后大小:263 耗时:0.014317989349365ms gzdeflate 压缩后大小:245 耗时:0.013813018798828ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.9
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014152050018311ms gzencode 压缩后大小:263 耗时:0.014204978942871ms gzdeflate 压缩后大小:245 耗时:0.013898849487305ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.8
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014509916305542ms gzencode 压缩后大小:263 耗时:0.014469861984253ms gzdeflate 压缩后大小:245 耗时:0.013892889022827ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.7
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014372825622559ms gzencode 压缩后大小:263 耗时:0.01439094543457ms gzdeflate 压缩后大小:245 耗时:0.013892889022827ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.6
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014288187026978ms gzencode 压缩后大小:263 耗时:0.014436006546021ms gzdeflate 压缩后大小:245 耗时:0.014071941375732ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.5
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014348030090332ms gzencode 压缩后大小:263 耗时:0.014357089996338ms gzdeflate 压缩后大小:245 耗时:0.013948917388916ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.4
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014266014099121ms gzencode 压缩后大小:263 耗时:0.014348030090332ms gzdeflate 压缩后大小:245 耗时:0.013911008834839ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.3
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01430606842041ms gzencode 压缩后大小:263 耗时:0.01428484916687ms gzdeflate 压缩后大小:245 耗时:0.013872146606445ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.2
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014208793640137ms gzencode 压缩后大小:263 耗时:0.014299869537354ms gzdeflate 压缩后大小:245 耗时:0.013849020004272ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.1
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01441502571106ms gzencode 压缩后大小:263 耗时:0.014588117599487ms gzdeflate 压缩后大小:245 耗时:0.014180898666382ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 7.0.0
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.014305830001831ms gzencode 压缩后大小:263 耗时:0.014405012130737ms gzdeflate 压缩后大小:245 耗时:0.013935089111328ms Fatal error: Uncaught Error: Call to undefined function bzcompress() in /in/K2XAf:18 Stack trace: #0 /in/K2XAf(5): compress_comp('\xE5\xB8\x83\xE5\xB1\x80 1 \xE4\xBB\x8B\xE7\xBB\x8D...', 1000) #1 {main} thrown in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.40
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.021330118179321ms gzencode 压缩后大小:263 耗时:0.014719009399414ms gzdeflate 压缩后大小:245 耗时:0.014080047607422ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.39
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.021015882492065ms gzencode 压缩后大小:263 耗时:0.014973163604736ms gzdeflate 压缩后大小:245 耗时:0.014643907546997ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.38
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.02111291885376ms gzencode 压缩后大小:263 耗时:0.01457405090332ms gzdeflate 压缩后大小:245 耗时:0.01413106918335ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.37
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020633935928345ms gzencode 压缩后大小:263 耗时:0.01465892791748ms gzdeflate 压缩后大小:245 耗时:0.014209985733032ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.36
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020524978637695ms gzencode 压缩后大小:263 耗时:0.014663934707642ms gzdeflate 压缩后大小:245 耗时:0.014174938201904ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.35
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.021470069885254ms gzencode 压缩后大小:263 耗时:0.015222787857056ms gzdeflate 压缩后大小:245 耗时:0.014434099197388ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.34
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020776987075806ms gzencode 压缩后大小:263 耗时:0.014647960662842ms gzdeflate 压缩后大小:245 耗时:0.014086008071899ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.33
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020584106445312ms gzencode 压缩后大小:263 耗时:0.014629125595093ms gzdeflate 压缩后大小:245 耗时:0.014382123947144ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.32
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020689010620117ms gzencode 压缩后大小:263 耗时:0.014602184295654ms gzdeflate 压缩后大小:245 耗时:0.014204025268555ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.31
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020575046539307ms gzencode 压缩后大小:263 耗时:0.014605045318604ms gzdeflate 压缩后大小:245 耗时:0.014119148254395ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.30
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.0205979347229ms gzencode 压缩后大小:263 耗时:0.014633893966675ms gzdeflate 压缩后大小:245 耗时:0.014156818389893ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.29
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020639896392822ms gzencode 压缩后大小:263 耗时:0.014708042144775ms gzdeflate 压缩后大小:245 耗时:0.014257907867432ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.28
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019866943359375ms gzencode 压缩后大小:263 耗时:0.01457405090332ms gzdeflate 压缩后大小:245 耗时:0.01413106918335ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.27
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019824981689453ms gzencode 压缩后大小:263 耗时:0.014594078063965ms gzdeflate 压缩后大小:245 耗时:0.014196872711182ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.26
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019799947738647ms gzencode 压缩后大小:263 耗时:0.014585971832275ms gzdeflate 压缩后大小:245 耗时:0.014268159866333ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.25
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019883871078491ms gzencode 压缩后大小:263 耗时:0.014704942703247ms gzdeflate 压缩后大小:245 耗时:0.014190912246704ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.24
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019623041152954ms gzencode 压缩后大小:263 耗时:0.014715909957886ms gzdeflate 压缩后大小:245 耗时:0.01426100730896ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.23
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019962072372437ms gzencode 压缩后大小:263 耗时:0.014686107635498ms gzdeflate 压缩后大小:245 耗时:0.014277219772339ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.22
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019736051559448ms gzencode 压缩后大小:263 耗时:0.014569044113159ms gzdeflate 压缩后大小:245 耗时:0.014163017272949ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.21
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020321130752563ms gzencode 压缩后大小:263 耗时:0.014831066131592ms gzdeflate 压缩后大小:245 耗时:0.01441216468811ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.20
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019509077072144ms gzencode 压缩后大小:263 耗时:0.014526128768921ms gzdeflate 压缩后大小:245 耗时:0.014274120330811ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.19
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020358085632324ms gzencode 压缩后大小:263 耗时:0.014583110809326ms gzdeflate 压缩后大小:245 耗时:0.014120817184448ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.18
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019512891769409ms gzencode 压缩后大小:263 耗时:0.014585971832275ms gzdeflate 压缩后大小:245 耗时:0.014134883880615ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.17
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019571781158447ms gzencode 压缩后大小:263 耗时:0.014554977416992ms gzdeflate 压缩后大小:245 耗时:0.014216184616089ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.16
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019994020462036ms gzencode 压缩后大小:263 耗时:0.014715909957886ms gzdeflate 压缩后大小:245 耗时:0.014183044433594ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.15
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020075798034668ms gzencode 压缩后大小:263 耗时:0.014572858810425ms gzdeflate 压缩后大小:245 耗时:0.014216899871826ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.14
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019830942153931ms gzencode 压缩后大小:263 耗时:0.014595985412598ms gzdeflate 压缩后大小:245 耗时:0.014266967773438ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.13
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01977014541626ms gzencode 压缩后大小:263 耗时:0.01470685005188ms gzdeflate 压缩后大小:245 耗时:0.014173030853271ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.12
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019583940505981ms gzencode 压缩后大小:263 耗时:0.01460599899292ms gzdeflate 压缩后大小:245 耗时:0.014097929000854ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.11
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019685983657837ms gzencode 压缩后大小:263 耗时:0.014671087265015ms gzdeflate 压缩后大小:245 耗时:0.0141441822052ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.10
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019702911376953ms gzencode 压缩后大小:263 耗时:0.014585971832275ms gzdeflate 压缩后大小:245 耗时:0.014199018478394ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.9
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019722938537598ms gzencode 压缩后大小:263 耗时:0.014615058898926ms gzdeflate 压缩后大小:245 耗时:0.014128923416138ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.8
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019556045532227ms gzencode 压缩后大小:263 耗时:0.014566898345947ms gzdeflate 压缩后大小:245 耗时:0.014149904251099ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.7
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019690990447998ms gzencode 压缩后大小:263 耗时:0.014642000198364ms gzdeflate 压缩后大小:245 耗时:0.014175176620483ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.6
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019840955734253ms gzencode 压缩后大小:263 耗时:0.014967918395996ms gzdeflate 压缩后大小:245 耗时:0.014528036117554ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.5
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019965171813965ms gzencode 压缩后大小:263 耗时:0.014648914337158ms gzdeflate 压缩后大小:245 耗时:0.01417088508606ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.4
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020026206970215ms gzencode 压缩后大小:263 耗时:0.01455283164978ms gzdeflate 压缩后大小:245 耗时:0.014173030853271ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.3
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019759178161621ms gzencode 压缩后大小:263 耗时:0.014601945877075ms gzdeflate 压缩后大小:245 耗时:0.014152050018311ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.2
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019796848297119ms gzencode 压缩后大小:263 耗时:0.01473593711853ms gzdeflate 压缩后大小:245 耗时:0.014250993728638ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.1
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019994020462036ms gzencode 压缩后大小:263 耗时:0.014656066894531ms gzdeflate 压缩后大小:245 耗时:0.014148950576782ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.6.0
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020779848098755ms gzencode 压缩后大小:263 耗时:0.014853954315186ms gzdeflate 压缩后大小:245 耗时:0.014318943023682ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.38
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019999027252197ms gzencode 压缩后大小:263 耗时:0.014668941497803ms gzdeflate 压缩后大小:245 耗时:0.014168977737427ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.37
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020003080368042ms gzencode 压缩后大小:263 耗时:0.014776945114136ms gzdeflate 压缩后大小:245 耗时:0.01440691947937ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.36
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020147085189819ms gzencode 压缩后大小:263 耗时:0.014652013778687ms gzdeflate 压缩后大小:245 耗时:0.014232873916626ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.35
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019598007202148ms gzencode 压缩后大小:263 耗时:0.014550924301147ms gzdeflate 压缩后大小:245 耗时:0.014202117919922ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.34
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019670009613037ms gzencode 压缩后大小:263 耗时:0.014678001403809ms gzdeflate 压缩后大小:245 耗时:0.014187097549438ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.33
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019624948501587ms gzencode 压缩后大小:263 耗时:0.014711141586304ms gzdeflate 压缩后大小:245 耗时:0.014224052429199ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.32
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019629001617432ms gzencode 压缩后大小:263 耗时:0.014582872390747ms gzdeflate 压缩后大小:245 耗时:0.014101982116699ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.31
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019556999206543ms gzencode 压缩后大小:263 耗时:0.014785051345825ms gzdeflate 压缩后大小:245 耗时:0.014104843139648ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.30
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019586086273193ms gzencode 压缩后大小:263 耗时:0.014775037765503ms gzdeflate 压缩后大小:245 耗时:0.014103174209595ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.29
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019533157348633ms gzencode 压缩后大小:263 耗时:0.014672040939331ms gzdeflate 压缩后大小:245 耗时:0.014120101928711ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.28
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020081996917725ms gzencode 压缩后大小:263 耗时:0.014848947525024ms gzdeflate 压缩后大小:245 耗时:0.01443886756897ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.27
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.02021598815918ms gzencode 压缩后大小:263 耗时:0.014631986618042ms gzdeflate 压缩后大小:245 耗时:0.014233112335205ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.26
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.02002215385437ms gzencode 压缩后大小:263 耗时:0.014561176300049ms gzdeflate 压缩后大小:245 耗时:0.014165878295898ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.25
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020518064498901ms gzencode 压缩后大小:263 耗时:0.014750003814697ms gzdeflate 压缩后大小:245 耗时:0.014224052429199ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.24
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020185947418213ms gzencode 压缩后大小:263 耗时:0.014826059341431ms gzdeflate 压缩后大小:245 耗时:0.014492034912109ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.23
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020371913909912ms gzencode 压缩后大小:263 耗时:0.014583110809326ms gzdeflate 压缩后大小:245 耗时:0.014247179031372ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.22
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020083904266357ms gzencode 压缩后大小:263 耗时:0.01469612121582ms gzdeflate 压缩后大小:245 耗时:0.014312028884888ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.21
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020503044128418ms gzencode 压缩后大小:263 耗时:0.014676094055176ms gzdeflate 压缩后大小:245 耗时:0.014211177825928ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.20
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.024564027786255ms gzencode 压缩后大小:263 耗时:0.015008926391602ms gzdeflate 压缩后大小:245 耗时:0.014836072921753ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.19
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020449876785278ms gzencode 压缩后大小:263 耗时:0.014630079269409ms gzdeflate 压缩后大小:245 耗时:0.014192819595337ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.18
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020523071289062ms gzencode 压缩后大小:263 耗时:0.014726877212524ms gzdeflate 压缩后大小:245 耗时:0.014294147491455ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.17
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020210981369019ms gzencode 压缩后大小:263 耗时:0.014703035354614ms gzdeflate 压缩后大小:245 耗时:0.014202833175659ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.16
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020336151123047ms gzencode 压缩后大小:263 耗时:0.014781951904297ms gzdeflate 压缩后大小:245 耗时:0.014232873916626ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.15
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020565986633301ms gzencode 压缩后大小:263 耗时:0.015447854995728ms gzdeflate 压缩后大小:245 耗时:0.015830993652344ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.14
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020158052444458ms gzencode 压缩后大小:263 耗时:0.014708042144775ms gzdeflate 压缩后大小:245 耗时:0.014344215393066ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.13
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020449876785278ms gzencode 压缩后大小:263 耗时:0.014631032943726ms gzdeflate 压缩后大小:245 耗时:0.014503955841064ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.12
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020206928253174ms gzencode 压缩后大小:263 耗时:0.014641046524048ms gzdeflate 压缩后大小:245 耗时:0.014180898666382ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.11
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019740104675293ms gzencode 压缩后大小:263 耗时:0.014678001403809ms gzdeflate 压缩后大小:245 耗时:0.014338970184326ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.10
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019850969314575ms gzencode 压缩后大小:263 耗时:0.014703989028931ms gzdeflate 压缩后大小:245 耗时:0.014166116714478ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.9
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020020008087158ms gzencode 压缩后大小:263 耗时:0.014710903167725ms gzdeflate 压缩后大小:245 耗时:0.014230966567993ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.8
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020189046859741ms gzencode 压缩后大小:263 耗时:0.01469898223877ms gzdeflate 压缩后大小:245 耗时:0.014207124710083ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.7
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019810914993286ms gzencode 压缩后大小:263 耗时:0.014633893966675ms gzdeflate 压缩后大小:245 耗时:0.014087915420532ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.6
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019644021987915ms gzencode 压缩后大小:263 耗时:0.014677047729492ms gzdeflate 压缩后大小:245 耗时:0.014261960983276ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.5
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.02006983757019ms gzencode 压缩后大小:263 耗时:0.014981031417847ms gzdeflate 压缩后大小:245 耗时:0.01449990272522ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.4
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01952600479126ms gzencode 压缩后大小:263 耗时:0.014533996582031ms gzdeflate 压缩后大小:245 耗时:0.014071941375732ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.3
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019627094268799ms gzencode 压缩后大小:263 耗时:0.014607191085815ms gzdeflate 压缩后大小:245 耗时:0.014137029647827ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.2
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019574880599976ms gzencode 压缩后大小:263 耗时:0.014702081680298ms gzdeflate 压缩后大小:245 耗时:0.014187812805176ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.1
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019581079483032ms gzencode 压缩后大小:263 耗时:0.014654159545898ms gzdeflate 压缩后大小:245 耗时:0.014219999313354ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.5.0
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020401000976562ms gzencode 压缩后大小:263 耗时:0.014617919921875ms gzdeflate 压缩后大小:245 耗时:0.014250993728638ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.45
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019654035568237ms gzencode 压缩后大小:263 耗时:0.014620065689087ms gzdeflate 压缩后大小:245 耗时:0.014106035232544ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.44
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019787788391113ms gzencode 压缩后大小:263 耗时:0.014585971832275ms gzdeflate 压缩后大小:245 耗时:0.014152050018311ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.43
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020888090133667ms gzencode 压缩后大小:263 耗时:0.014544010162354ms gzdeflate 压缩后大小:245 耗时:0.01401686668396ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.42
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019866943359375ms gzencode 压缩后大小:263 耗时:0.014656782150269ms gzdeflate 压缩后大小:245 耗时:0.014210939407349ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.41
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020155906677246ms gzencode 压缩后大小:263 耗时:0.014656066894531ms gzdeflate 压缩后大小:245 耗时:0.014494895935059ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.40
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019607067108154ms gzencode 压缩后大小:263 耗时:0.014624118804932ms gzdeflate 压缩后大小:245 耗时:0.014055013656616ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.39
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019757032394409ms gzencode 压缩后大小:263 耗时:0.014810800552368ms gzdeflate 压缩后大小:245 耗时:0.014255046844482ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.38
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019811868667603ms gzencode 压缩后大小:263 耗时:0.014957904815674ms gzdeflate 压缩后大小:245 耗时:0.014257907867432ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.37
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020219087600708ms gzencode 压缩后大小:263 耗时:0.014716148376465ms gzdeflate 压缩后大小:245 耗时:0.014396905899048ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.36
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019945859909058ms gzencode 压缩后大小:263 耗时:0.014779090881348ms gzdeflate 压缩后大小:245 耗时:0.014168977737427ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.35
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.022693157196045ms gzencode 压缩后大小:263 耗时:0.014549970626831ms gzdeflate 压缩后大小:245 耗时:0.014125108718872ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.34
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020242929458618ms gzencode 压缩后大小:263 耗时:0.014817953109741ms gzdeflate 压缩后大小:245 耗时:0.014271020889282ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.33
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019661903381348ms gzencode 压缩后大小:263 耗时:0.014679908752441ms gzdeflate 压缩后大小:245 耗时:0.01422905921936ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.32
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019561052322388ms gzencode 压缩后大小:263 耗时:0.014693021774292ms gzdeflate 压缩后大小:245 耗时:0.014123916625977ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.31
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.023032903671265ms gzencode 压缩后大小:263 耗时:0.014517068862915ms gzdeflate 压缩后大小:245 耗时:0.014020919799805ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.30
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019719123840332ms gzencode 压缩后大小:263 耗时:0.014689207077026ms gzdeflate 压缩后大小:245 耗时:0.014122009277344ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.29
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019872903823853ms gzencode 压缩后大小:263 耗时:0.014718055725098ms gzdeflate 压缩后大小:245 耗时:0.014252901077271ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.28
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019628047943115ms gzencode 压缩后大小:263 耗时:0.01459813117981ms gzdeflate 压缩后大小:245 耗时:0.014086008071899ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.27
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019758939743042ms gzencode 压缩后大小:263 耗时:0.014733076095581ms gzdeflate 压缩后大小:245 耗时:0.01418399810791ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.26
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019944906234741ms gzencode 压缩后大小:263 耗时:0.014570951461792ms gzdeflate 压缩后大小:245 耗时:0.014182090759277ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.25
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019711017608643ms gzencode 压缩后大小:263 耗时:0.014600992202759ms gzdeflate 压缩后大小:245 耗时:0.014180183410645ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.24
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01997184753418ms gzencode 压缩后大小:263 耗时:0.014547109603882ms gzdeflate 压缩后大小:245 耗时:0.0141441822052ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.23
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020068168640137ms gzencode 压缩后大小:263 耗时:0.014693975448608ms gzdeflate 压缩后大小:245 耗时:0.014128923416138ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.22
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020040988922119ms gzencode 压缩后大小:263 耗时:0.014687061309814ms gzdeflate 压缩后大小:245 耗时:0.014256000518799ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.21
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019791841506958ms gzencode 压缩后大小:263 耗时:0.01457691192627ms gzdeflate 压缩后大小:245 耗时:0.014185905456543ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.20
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020145893096924ms gzencode 压缩后大小:263 耗时:0.014620065689087ms gzdeflate 压缩后大小:245 耗时:0.014161109924316ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.19
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019934177398682ms gzencode 压缩后大小:263 耗时:0.014901876449585ms gzdeflate 压缩后大小:245 耗时:0.014312982559204ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.18
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019879817962646ms gzencode 压缩后大小:263 耗时:0.014782905578613ms gzdeflate 压缩后大小:245 耗时:0.014236927032471ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.17
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019697904586792ms gzencode 压缩后大小:263 耗时:0.014724969863892ms gzdeflate 压缩后大小:245 耗时:0.014283895492554ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.16
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020327091217041ms gzencode 压缩后大小:263 耗时:0.014652013778687ms gzdeflate 压缩后大小:245 耗时:0.014185190200806ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.15
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.01964282989502ms gzencode 压缩后大小:263 耗时:0.014638900756836ms gzdeflate 压缩后大小:245 耗时:0.014212846755981ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.14
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020689964294434ms gzencode 压缩后大小:263 耗时:0.014744997024536ms gzdeflate 压缩后大小:245 耗时:0.014155864715576ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.13
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019768953323364ms gzencode 压缩后大小:263 耗时:0.014701128005981ms gzdeflate 压缩后大小:245 耗时:0.014294147491455ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.12
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019866943359375ms gzencode 压缩后大小:263 耗时:0.014657020568848ms gzdeflate 压缩后大小:245 耗时:0.014096021652222ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.11
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020266771316528ms gzencode 压缩后大小:263 耗时:0.014621019363403ms gzdeflate 压缩后大小:245 耗时:0.014209985733032ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.10
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020733833312988ms gzencode 压缩后大小:263 耗时:0.014591932296753ms gzdeflate 压缩后大小:245 耗时:0.014180898666382ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.9
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019842863082886ms gzencode 压缩后大小:263 耗时:0.014687061309814ms gzdeflate 压缩后大小:245 耗时:0.014109134674072ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.8
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019860029220581ms gzencode 压缩后大小:263 耗时:0.01469898223877ms gzdeflate 压缩后大小:245 耗时:0.014161109924316ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.7
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019773006439209ms gzencode 压缩后大小:263 耗时:0.014689207077026ms gzdeflate 压缩后大小:245 耗时:0.014148950576782ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.6
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.019968032836914ms gzencode 压缩后大小:263 耗时:0.014616012573242ms gzdeflate 压缩后大小:245 耗时:0.014147996902466ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.5
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020035028457642ms gzencode 压缩后大小:263 耗时:0.014678955078125ms gzdeflate 压缩后大小:245 耗时:0.014101982116699ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.4
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020101070404053ms gzencode 压缩后大小:263 耗时:0.014677047729492ms gzdeflate 压缩后大小:245 耗时:0.014135837554932ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.3
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020697832107544ms gzencode 压缩后大小:263 耗时:0.014784097671509ms gzdeflate 压缩后大小:245 耗时:0.014274120330811ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.2
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.021229982376099ms gzencode 压缩后大小:263 耗时:0.014832973480225ms gzdeflate 压缩后大小:245 耗时:0.014297008514404ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.1
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.02077317237854ms gzencode 压缩后大小:263 耗时:0.014694929122925ms gzdeflate 压缩后大小:245 耗时:0.014143943786621ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.
Output for 5.4.0
<b>压缩中文比较</b> 原文大小:328 gzcompress 压缩后大小:251 耗时:0.020350933074951ms gzencode 压缩后大小:263 耗时:0.014596939086914ms gzdeflate 压缩后大小:245 耗时:0.014070987701416ms Fatal error: Call to undefined function bzcompress() in /in/K2XAf on line 18
Process exited with code 255.

preferences:
256.76 ms | 401 KiB | 316 Q