Advertisement
Guest User

Untitled

a guest
Sep 29th, 2011
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <?php
  2.  
  3. $str = str_repeat("foo",100000);
  4. $time = microtime(true);
  5.  
  6. iconv_substr($str,1000,90000,'UTF-8');
  7.  
  8. echo "iconv_substr: " . (microtime(true)-$time) . "\n";
  9.  
  10. $time = microtime(true);
  11.  
  12. mb_substr($str,1000,90000,'UTF-8');
  13.  
  14. echo "mb_substr: " . (microtime(true)-$time) . "\n";
  15.  
  16. $time = microtime(true);
  17.  
  18. substr($str,1000,90000);
  19.  
  20. echo "substr: " . (microtime(true)-$time) . "\n";
  21. ?>
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement