不推荐使用:函数eregi_replace()在第3302行的/var/www/html/domit/xml_domit_parser.php中已弃用 在第3302行$ xmlText = eregi_replace('>'。“[[:space:]] +”。'<','><',$ xmlText); 任何人帮我修复preg_replace函数
答案 0 :(得分:0)
只是做:
<?php
$xmlText = preg_replace("/>\s*</", '><', $xmlText);
?>
\s*
匹配结束标记和开始标记之间的任意数量的空格。