2012-09-30 22:24

[轉載][PHP] preg_replace 效能測試 (將兩個空白字元以上取代成一個)

轉載自:[PHP] preg_replace 效能測試 (將兩個空白字元以上取代成一個) 小惡魔 – 電腦技術 – 工作筆記 – AppleBOY

preg_replace 可以使用正規語法來取代字串任何字元,,今天探討取代空白字元的效能,雖然這是個不起眼的效能評估,一般人不太會這樣去改,不過這是國外 PHP Framework 有人提出來修正的,經過許多人的測試一致同意。功能就是一篇文章內如果有多餘的空白能空取代成一個,一般人都會用 \s+ 正規語法,畢竟大家都知道 \s 代表單一空白或 \r 等符號,但是國外有人提出用 {2,} 方式來取代空白。程式碼如下,大家可以測試看看。

  1. <?php 
  2. $nb = 10000; 
  3. $str = str_repeat('Hi, I am appleboy  ' . "\n", 10); 
  4. $t1 = microtime(true); 
  5. for ($i = $nb; $i--; ) { 
  6.    preg_replace('/\s+/', ' ', $str); 
  7. } 
  8. $t2 = microtime(true); 
  9. for ($i = $nb; $i--; ) { 
  10.    preg_replace('/ {2,}/', ' ',  
  11.        str_replace(array("\r","\n","\t","\x0B","\x0C"),' ',$str) 
  12.    ); 
  13. } 
  14. $t3 = microtime(true); 
  15.  
  16. echo $t2 - $t1; 
  17. echo "\n"; 
  18. echo $t3 - $t2; 

測試結果(1萬次)

  1. PHP 5.3.3 
  2. old: 0.13053798675537 
  3. new: 0.058536052703857 
  4.  
  5. PHP 5.3.15 
  6. old: 0.11732506752014 
  7. new: 0.071418046951294 
  8.  
  9. PHP 5.3.17 
  10. old: 0.11612010002136 
  11. new: 0.07065486907959 
  12.  
  13. PHP 5.4.5 
  14. old: 0.1185781955719 
  15. new: 0.066012859344482 
  16.  
  17. PHP 5.4.7 
  18. old: 0.11343121528625 
  19. new: 0.066931962966919 

結論至少快蠻多的,如果整體資料量再大一點,我想差別會更大,那至於要不要用呢,就看個人了 XD。

1 回應:

匿名 提到...

I love reading through a post that will make people
think. Also, many thanks for allowing me to comment!


my website grep regular expression ()