我有这段代码来获取所有的 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 我如何删除它???!!
我有这段代码来获取所有的 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 我如何删除它???!!