发布网友 发布时间:2022-04-06 01:01
共4个回答
热心网友 时间:2022-04-06 02:30
过滤img标签:
单独提取img标签:
代码如下:
<?php这样就可以了。
热心网友 时间:2022-04-06 03:48
建议直接用kindediter插件处理,功能齐全且方便
热心网友 时间:2022-04-06 05:23
问题二答案:
$editorValue = preg_replace('/((\s)*(\n)+(\s)*)/i',"", $editorValue); //去掉转义字符
preg_match_all("#<div class=\"text\">(.*)</div><div id=\"biaoshi\"></div>#", $editorValue,$outhtml,PREG_PATTERN_ORDER); //截取后的字串放在 $outhtml数组中
$editorValue = str_replace('<div class="text">','',$outhtml[0]);
$editorValue = str_replace('</div>','',$editorValue);
问题一:详细一下问题,没看懂
热心网友 时间:2022-04-06 07:14
php 正则匹配 !