如何让本文中提到的正则表达式与 php 中的 preg_match 一起使用?
<?php
preg_match("\b(([\w-]+://?|www[.])[^\s()<>]+(?:\([\w\d]+\)|([^[:punct:]\s]|/)))/i", $text, $matches);
print_r($matches);
?>
使用上面的代码,我得到以下错误:
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash...