PHP的正则表达式中占位符的书写格式是什么

WBOY
Release: 2016-06-06 20:20:40
Original
1460 people have browsed it

PHP的正则表达式中的占位符的书写格式是什么,有更多的资料吗
例如:

<code>    $a='{$name}';
    $_patten='/\{\$([\w]+)\}/';//匹配模板中的{变量}
             
    //模板内容替换后付给$this->_tpl
    $tpl=preg_replace($_patten,"\\1".'<br>',$a);
    echo $tpl;
这里面的\\1也可以换成$1,代表正则表达式第一个()匹配的内容</code>
Copy after login
Copy after login

回复内容:

PHP的正则表达式中的占位符的书写格式是什么,有更多的资料吗
例如:

<code>    $a='{$name}';
    $_patten='/\{\$([\w]+)\}/';//匹配模板中的{变量}
             
    //模板内容替换后付给$this->_tpl
    $tpl=preg_replace($_patten,"\\1".'<br>',$a);
    echo $tpl;
这里面的\\1也可以换成$1,代表正则表达式第一个()匹配的内容</code>
Copy after login
Copy after login

不知道你问的到底是正则表达式的规则还是匹配结果的占位符,匹配结果的占位符就是 \\1 \\2 \\3 的格式。

第一次写错了,是正则表达式里面的所有占位符的用法,我找不到资料~~呜呜呜...

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template