标签:res 匹配 pre als pos php replace mobile 文字
1)str_replace支持多个字符替换:
$mobile = ‘ 131_1234-2731 ‘;
$res = str_replace([‘ ‘, ‘-‘, ‘_‘], ‘‘, $mobile); // 13112342731
2)strpos()返回的是字符串所在的位置,判 断一个字符串在另一个字符串中,必须使用 ‘===‘
$res = strpos(‘andriod‘, ‘andriod‘); //返回的是 int型 0
比如:
if ($res === false) {
// 搜索字符串不存在
} else {
//搜索字符串存在
}
3)匹配中文字符串时使用preg_match需注意使用修正符“u”
比如:
if (preg_match("/^[\x{4e00}-\x{9fa5}]+$/u", ‘张三‘)) {
// 匹配成功
} else {
//匹配失败
}
标签:res 匹配 pre als pos php replace mobile 文字
原文地址:http://www.cnblogs.com/xiawenwen/p/7521615.html