0

我有这段代码来获取所有的 img 标签:

<?php

foreach($design_children as $design_child) {
    echo preg_match_all('/<img[^>]+>/i', $design_child->post_content, $result);
    echo $result[0];
    break;
}

?>

但是我不断让模式匹配数字返回到我的输出中,例如图像旁边的 2、3 我如何删除它???!!

4

1 回答 1

0

删除echo之前的preg_match_all.

于 2012-05-15T22:58:02.860 回答