使用Tidy重新格式化后,修复XML文件中的CDATA块
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Tidy重新格式化后,修复XML文件中的CDATA块相关的知识,希望对你有一定的参考价值。
For some reason tidy inserts new lines before/after
# command line/exec(),etc. or use the php functions to tidy up your document tidy -indent -utf8 -xml -wrap 1000 input.xml > output.xml <?php /** * Replaces invalid: * <element> * <![CDATA[whatever content]]> * </element> * * With well-formed: * <element><![CDATA[whatever content]]></element> */ ?>
以上是关于使用Tidy重新格式化后,修复XML文件中的CDATA块的主要内容,如果未能解决你的问题,请参考以下文章