php中simplexml_load_string使用实例分享

2015-01-24信息快讯网

这篇文章主要介绍了php中simplexml_load_string使用实例,需要的朋友可以参考下

先用一段代码重现一下问题

乍一看,结果很让人费解:

<?php 
$string = <<<EOF 
<data> 
<foo><bar>hello</bar></foo> 
<foo><bar>world</bar></foo> 
</data> 
EOF;

$data = simplexml_load_string($string);

print_r($data); print_r($data->foo); ?>

乍一看,结果很让人费解:

SimpleXMLElement Object 
( 
[foo] => Array 
( 
[0] => SimpleXMLElement Object 
( 
[bar] => hello 
) 
[1] => SimpleXMLElement Object 
( 
[bar] => world 
) 
) 
) 
SimpleXMLElement Object 
( 
[bar] => hello 
)

明明print_r显示foo是一个有两个bar元素的数组,但是最后却仅仅显示了一个bar元素!
原因其实很简单,在如上所示simplexml_load_string的结果里,foo并不是数组,而是一个迭代对象!
可以这样确认:

foreach ($data->foo as $v) print_r($v); 
foreach ($data->children() as $v) print_r($v);

看来,print_r或者var_dump之类的表象并不完全可信,自己多留心吧。

假如我们获取的XML数据如下:(可以使用curl、fsockopen等方式获取)

<?xml version="1.0" encoding="UTF-8"?>
<dict num="219" id="219" name="219">
 <key>你好</key>
 <pos></pos>
 <acceptation>Array;Array;Array;</acceptation>
 <sent>
  <orig>Haven't seen you for a long time. How are you?</orig>
  <trans>多日不见了,你好吗?</trans>
 </sent>
 <sent>
  <orig>Hello! How are you?</orig>
  <trans>嘿,你好?</trans>
 </sent>
 <sent>
  <orig>Hello, Brooks!How are you?</orig>
  <trans>喂,布鲁克斯!你好吗?</trans>
 </sent>
 <sent>
  <orig>Hi, Barbara, how are you?</orig>
  <trans>嘿,芭芭拉,你好吗?</trans>
 </sent>
 <sent>
  <orig>How are you? -Quite well, thank you.</orig>
  <trans>你好吗?-很好,谢谢你。</trans>
 </sent>
</dict> 

经过simplexml_load_string得到:

SimpleXMLElement Object
(
    [@attributes] => Array
        (
            [num] => 219
            [id] => 219
            [name] => 219
        )

[key] => 你好 [pos] => SimpleXMLElement Object ( )

[acceptation] => Array;Array;Array; [sent] => Array ( [0] => SimpleXMLElement Object ( [orig] => Haven't seen you for a long time. How are you? [trans] => 多日不见了,你好吗? )

[1] => SimpleXMLElement Object ( [orig] => Hello! How are you? [trans] => 嘿,你好? )

[2] => SimpleXMLElement Object ( [orig] => Hello, Brooks!How are you? [trans] => 喂,布鲁克斯!你好吗? )

[3] => SimpleXMLElement Object ( [orig] => Hi, Barbara, how are you? [trans] => 嘿,芭芭拉,你好吗? )

[4] => SimpleXMLElement Object ( [orig] => How are you? -Quite well, thank you. [trans] => 你好吗?-很好,谢谢你。 )

)

)

我们在PHP语言中可以用以下方法取得我们想要的值:

<?php
$data = <<<XML
<?xml version="1.0" encoding="UTF-8"?>
<dict num="219" id="219" name="219">
 <key>你好</key>
 <pos></pos>
 <acceptation>Array;Array;Array;</acceptation>
 <sent>
  <orig>Haven't seen you for a long time. How are you?</orig>
  <trans>多日不见了,你好吗?</trans>
 </sent>
 <sent>
  <orig>Hello! How are you?</orig>
  <trans>嘿,你好?</trans>
 </sent>
 <sent>
  <orig>Hello, Brooks!How are you?</orig>
  <trans>喂,布鲁克斯!你好吗?</trans>
 </sent>
 <sent>
  <orig>Hi, Barbara, how are you?</orig>
  <trans>嘿,芭芭拉,你好吗?</trans>
 </sent>
 <sent>
  <orig>How are you? -Quite well, thank you.</orig>
  <trans>你好吗?-很好,谢谢你。</trans>
 </sent>
</dict>
XML;
$xmldata = simplexml_load_string($data);
header("Content-Type: text/html; charset=UTF-8");
print_r($xmldata);
echo "<br />".trim($xmldata->sent[0]->orig); //Haven't seen you for a long time. How are you?
echo "<br />".trim($xmldata->key); //你好
?>

php.ini save_handler 修改不生效的解决办法
async和DOM Script文件加载比较
phpmailer发送邮件之后,返回收件人是否阅读了邮件的方法
PHP采用XML-RPC构造Web Service实例教程
PHP缓存机制Output Control详解
phpmailer在服务器上不能正常发送邮件的解决办法
PHP关于htmlspecialchars、strip_tags、addslashes的解释
PHPMailer发送HTML内容、带附件的邮件实例
PHP和javascript常用正则表达式及用法实例
PHP使用DOMDocument类生成HTML实例(包含常见标签元素)
JavaScript创建命名空间的5种写法
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
destoon之URL Rewrite(伪静态)设置方法详解
PHP封装的一个支持HTML、JS、PHP重定向的多功能跳转函数
PHP中strlen()和mb_strlen()的区别浅析
php smarty truncate UTF8乱码问题解决办法
php截取字符串函数substr,iconv_substr,mb_substr示例以及优劣分析
使用php记录用户通过搜索引擎进网站的关键词
使用php显示搜索引擎来的关键词
php中的filesystem文件系统函数介绍及使用示例
php中hashtable实现示例分享
使用swoole扩展php websocket示例
php创建sprite
php stripslashes和addslashes的区别
php获取网页标题和内容函数(不包含html标签)
PHP下获取上个月、下个月、本月的日期(strtotime,date)
采用header定义为文件然后readfile下载(隐藏下载地址)
php缓冲 output_buffering和ob_start使用介绍
PHP $_FILES中error返回值详解
linux系统下php安装mbstring扩展的二种方法
PHP 动态生成静态HTML页面示例代码
利用浏览器的Javascript控制台调试PHP程序
PHP中HTML标签过滤技巧
深入解读php中关于抽象(abstract)类和抽象方法的问题分析
php使用strtotime和date函数判断日期是否有效代码分享
Server.HTMLEncode让代码在页面里显示为源代码
php 批量替换html标签的实例代码
©2014-2024 dbsqp.com