‘壹’ php删除字符串中多个字符,想一次性去除。如一次去除 abc 与 123
用strtr
strtr() 函数转换字符串中特定的字符。
语法
strtr(string,from,to)
或者
strtr(string,array)
这里用第二种语法就可以了,将要替换的内容写入一个数组中然后处理,比如:
$replace = array(
'abc' => '',
'123' => ''
);
$string2 = strtr($string, $replace);
也可以直接写成一行:
$string2 = strtr($string,
$replace = array( 'abc' => '', '123' => ''));
另外顺便提一下,没必要用preg_replace,preg_replace是用来正则替换的,你根本没用正则表达式,以后没特殊需要用str_replace就好了,比如$string2 = str_replace('abc', '', $string);
‘贰’ php中怎样注释掉一部分的代码
1、首先要先建一个php的文件(这里名字叫comment.php,可以随便改)。