PHP头条
热点:

php5.3废弃函数小结


在php5.3被放弃的函数有:

ereg();//直接用mb_ereg代替,或是preg_match代替,但是匹配规则需要用/包括起来
eregi();//preg_match代替,在规则后加上i,如:preg_match(“/^(style|style_)(.*)*/i”, $file);
ereg_replace();
set_magic_quotes_runtime();
split();
mysql_close(); // 将不支持全部关闭, 需要改为:mysql_close($link);

www.phpzy.comtrue/php/10794.htmlTechArticlephp5.3废弃函数小结 在php5.3被放弃的函数有: ereg();//直接用mb_ereg代替,或是preg_match代替,但是匹配规则需要用/包括起来 eregi();//preg_match代替,在规则后加上i,如:preg_match(“/^(style|sty...

相关文章

相关频道:

PHP之友评论

今天推荐