php判断str字符串是否是xml格式数据的方法示例
本文实例讲述了php判断str字符串是否是xml格式数据的方法。分享给大家供大家参考,具体如下:
ETO; $jsonstr='{"tools":[{"name":"cssformat","site":"http://tools.jb51.net/code/css"},{"name":"jsonformat","site":"http://tools.jb51.net/code/json"},{"name":"pwdcheck","site":"http://tools.jb51.net/password/my_password_safe"}]}'; if(xml_parser($xmlstr)){ echo"\$xmlstr是xml格式数据"; }else{ echo"\$xmlstr不是xml格式数据"; } echo" JackHerrington PHPHacks O'Reilly JackHerrington PodcastingHacks O'Reilly XML数据 毛票票 tools.jb51.net
"; if(xml_parser($jsonstr)){ echo"\$jsonstr是xml格式数据"; }else{ echo"\$jsonstr不是xml格式数据"; } ?>
运行结果:
$xmlstr是xml格式数据 $jsonstr不是xml格式数据
PS:这里再为大家提供几款关于xml操作的在线工具供大家参考使用:
在线