php 如何用正则让编辑器中img添加一个p标签进行包裹并且居中显示
发布网友
发布时间:2022-04-06 00:41
我来回答
共1个回答
热心网友
时间:2022-04-06 02:11
之前也有同样的需求,把项目代码给你吧。
// 返回小发猫文章的图片数据
function replace_img_tag($contents, &$img_arr) {
$count = preg_match_all('/(<img[^>]+>)/i', $contents, $matches);
$keys = array();
foreach ($matches[0] as $key => $value) {
# code...
$keys[] = ' 0x' . dechex($key+9500) . ' ';
}
$img_arr = $matches[0];
return str_replace($matches[0], $keys, $contents);
}