码迷,mamicode.com
首页 > Web开发 > 详细

php执行效率相关的语句

时间:2014-05-21 23:40:35      阅读:357      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   c   code   http   

一:字符替换:

strtr > str_replace > preg_replace

注意:

1:一般用strtr函数的这种形式:string strtr ( string $str , array $replace_pairs )

2:如果 replace_pairs 中包含一个空 字符串 "")键,那么将返回 FALSE 。 If the str is not a scalar then it is not typecasted into a string, instead a warning is raised and NULL is returned.

//note this output null
echo strtr(‘abc‘, array(‘‘ => ‘‘));

 

参考:http://blog.csdn.net/aidenliu/article/details/5695433

 

二:对数组中的每个单元作用函数时用array_map,他的性能大于循环数组使用对应的函数处理

如:
$integers
= array_map (‘intval‘, $integers);
$safeStrings = array_map (‘mysql_real_escape_string‘, $unsafeStrings);
$_POST
= array_map(‘strip_tags‘, $_POST);

 

 

 

php执行效率相关的语句,布布扣,bubuko.com

php执行效率相关的语句

标签:style   blog   class   c   code   http   

原文地址:http://www.cnblogs.com/Alight/p/3738999.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!