Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么以下常规函数调用返回值1:
1
preg_match('<strong>', '<strong[\>\s]+')
根据文档,我原以为应该将它们颠倒过来。
<strong>是用尖括号作为分隔符的正则表达式。实际的正则表达式只是strong成功匹配主题字符串的一部分,因为它没有^和$锚点。
<strong>
strong
^
$
这将失败:
preg_match('/<strong>/', '<strong[\>\s]+')