时间:2021-07-01 10:21:17 帮助过:7人阅读
$content = '[1] 2 3Last '; $a = preg_match_all('/a href([\S])*/is', $content, $matches); print_r($matches);
$content = '[1] 2 3Last ';preg_match_all('/pgno=(\d+)/is', $content, $m);print_r($m[1]);/**Array ( [0] => 2 [1] => 3 [2] => 188 )*/
PHP code?12345678910$content = '
PHP code?12345678910$content = '
$content = '[1] 2 3Last '; preg_match_all('/pgno=(\d+)/is', $content, $m);print_r($m[1]);
引用 1 楼 yangball 的回复:PHP code?12345678910$content = '
preg_match_all('/href=[\'"]?([^>]*&toc=[^\'">]*)/is', $content, $m);print_r($m[1]);//有问题直接发帖就行了,这里挺多热心人和高手的。