xml domit解析器中的问题

时间:2011-07-15 14:47:15

标签: php xml

不推荐使用:函数eregi_replace()在第3302行的/var/www/html/domit/xml_domit_parser.php中已弃用 在第3302行$ xmlText = eregi_replace('>'。“[[:space:]] +”。'<','><',$ xmlText); 任何人帮我修复preg_replace函数

1 个答案:

答案 0 :(得分:0)

只是做:

<?php
$xmlText = preg_replace("/>\s*</", '><', $xmlText);
?>

\s*匹配结束标记和开始标记之间的任意数量的空格。