php判断str字符串是否是xml格式数据的方法示例

前端之家收集整理的这篇文章主要介绍了php判断str字符串是否是xml格式数据的方法示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了PHP判断str字符串是否是xml格式数据的方法分享给大家供大家参考,具体如下:

PHP;"> PHP //自定义xml验证函数xml_parser() function xml_parser($str){ $xml_parser = xml_parser_create(); if(!xml_parse($xml_parser,$str,true)){ xml_parser_free($xml_parser); return false; }else { return (json_decode(json_encode(simplexml_load_string($str)),true)); } } //应用示例: $xmlstr=<< Jack Herrington PHP Hacks O'Reilly Jack Herrington Podcasting Hacks O'Reilly XML数据 编程之家 tools.jb51.cc ETO; $jsonstr='{ "tools": [ { "name":"css format","site":"http://tools.jb51.cc/code/css" },{ "name":"json format","site":"http://tools.jb51.cc/code/json" },{ "name":"pwd check","site":"http://tools.jb51.cc/password/my_password_safe" } ] }'; if(xml_parser($xmlstr)){ echo "\$xmlstr是xml格式数据"; }else{ echo "\$xmlstr不是xml格式数据"; } echo "
"; if(xml_parser($jsonstr)){ echo "\$jsonstr是xml格式数据"; }else{ echo "\$jsonstr不是xml格式数据"; } ?>

运行结果:

PS:这里再为大家提供几款关于xml操作的在线工具供大家参考使用:

在线XML/JSON互相转换工具:

在线格式化XML/在线压缩XML:

XML

在线压缩/格式化工具:

XML

代码在线格式化美化工具:

更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》、《》及《PHP常见数据库操作技巧汇总》

希望本文所述对大家PHP程序设计有所帮助。

原文链接:https://www.f2er.com/php/17082.html

猜你在找的PHP相关文章