$str = '';
$match = '';
preg_match_all('/s+action="(?!http:)(.*?)"s/', $str, $match);
print_r($match);
在正则中使用回调函数
以下为引用的内容:
复制代码 代码如下:
$str = '';
$match = '';
preg_match_all('/s+action="(?!http:)(.*?)"s/', $str, $match);
print_r($match);
复制代码 代码如下:
内容版权声明:除非注明,否则皆为本站原创文章。