标签:style http io for ar cti line new sp
Note:
反斜线在单引号字符串和双引号字符串 中都有特殊含义,因此要匹配一个反斜线, 模式中必须写为 ”\\\\”。 译注: “/\\/”, 首先它作为字符串,反斜线会进行转义, 那么转义后的结果是/\/,这个才是正则表达式引擎拿到的模式, 而正则表达式引擎也认为 \ 是转义标记,它会将分隔符 / 进行转义, 从而得到的是一个错误,因此,需要 4 个反斜线才可以匹配一个反斜线。
事实上
$attribute = "sdfsdf.555"; preg_match(‘/([\w]+)(\.)([0-5]|.)/‘, $attribute, $matches); Array ( [0] => sdfsdf.555 //匹配([\w]+)(\.)([0-5]|.) 如果整个模式匹配失败则不会继续匹配.例如$attribute = "sssss555" [1] => sdfsdf //匹配(\w+) [2] => . //匹配(\.) [3] => 555 //匹配([0-5]*) )
preg_replace_callback
将字符窜中正则表达式匹配到的每一个值用回调函数处理并返回..
函数会在第一次匹配后 继续搜索.
首先会匹配得到[{summary}]
接着会继续搜索匹配得到[{items}]
最后匹配得到[{form}]
下个例子..正则表达式..匹配的结果分别是..[{summary}],[{items}] [{form}]
将三个值用于回调函数...
比较下面两个匹配值的不同:
$layout = "{summary}\n{items}\n{form}"; $content = preg_replace_callback("/{\\w+}/", function ($matches) { print_r($matches); return $matches[0]; }, $layout); print_r($content); $layout = "{summary}-{items}-{form}"; $content = preg_replace_callback("/({\\w+})(-)/", function ($matches) { print_r($matches);//["{summary}-","{summary}","-"] return $matches[0]; }, $layout); print_r($content);
标签:style http io for ar cti line new sp
原文地址:http://www.cnblogs.com/zhepama/p/3932007.html