php中simplexml_load_file函数用法实例

2015-01-24信息快讯网

这篇文章主要介绍了php中simplexml_load_file函数用法,以实例形式详细的讲述了simplexml_load_file函数读取XML文件的具体方法,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了php中simplexml_load_file函数用法。分享给大家供大家参考。具体用法分析如下:

在php中simplexml_load_file() 函数把 XML 文档载入对象中之后我们就可以利用由此函数返回的对象进行相关的操作了,下面我们看几个测试实例.

例子,XML文件代码如下:

<?xml version="1.0" encoding="ISO-8859-1"?>  
<note>
<to>George</to>
<from>John</from>
<heading>Reminder</heading>
<body>Don't forget the meeting!</body>
</note>

PHP 代码如下:
<?php  
if (file_exists('test.xml'))  
{  
  $xml = simplexml_load_file('test.xml');  
  var_dump($xml);  
}  
else  
{  
  exit('Error.');  
}  
?>

 
运行输出结果如下: 
object(SimpleXMLElement)#1 (4) {
  ["to"]=>
  string(6) "George"
  ["from"]=>
  string(4) "John"
  ["heading"]=>
  string(8) "Reminder"
  ["body"]=>
  string(25) "Don't forget the meeting!"
}

假如有一个“iciba.xml”文件,其内容如下:
<?xml version="1.0" encoding="UTF-8"?>  
<dict num="219" id="219" name="219">  
 <key>天空</key>  
 <pos></pos>  
 <acceptation>Array;Array;</acceptation>  
 <sent>  
  <orig>The church tower stood against the sky like a finger pointing towards heaven.</orig>  
  <trans>教堂的尖塔在天空的映衬下宛如指向天空的手指。</trans>  
 </sent>  
 <sent>  
  <orig>A balloon floated across the sky.</orig>  
  <trans>气球飘过天空。</trans>  
 </sent>  
 <sent>  
  <orig>A bolt of lightning lit up the sky.</orig>  
  <trans>(一道)闪电照亮了天空。</trans>  
 </sent>  
 <sent>  
  <orig>A bright moving object appeared in the sky at sunset.</orig>  
  <trans>日落西山时,天空出现了一个移动的发亮物体。</trans>  
 </sent>  
 <sent>  
  <orig>A bright rainbow arched above.</orig>  
  <trans>一弯明亮的彩虹悬挂在天空。</trans>  
 </sent>  
</dict>

在PHP语言中我们可以用以下方法取得我们想要的值: 
<?php  
$xmldata = simplexml_load_file("iciba.xml");  
  
header("Content-Type: text/html; charset=UTF-8");  
print_r($xmldata); //第一部分  
  
$listcount = count($xmldata->sent);  
  
for($i=0;$i<$listcount;$i++){ //第二部分  
 $dictlist = $xmldata->sent[$i];  
 echo "<br />例句:".$dictlist->orig;  
 echo "<br />翻译:".$dictlist->trans;  
}  
?>

“第一部分”将输出: 

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

[key] => 天空 [pos] => SimpleXMLElement Object ( )

[acceptation] => Array;Array; [sent] => Array ( [0] => SimpleXMLElement Object ( [orig] => The church tower stood against the sky like a finger pointing towards heaven. [trans] => 教堂的尖塔在天空的映衬下宛如指向天空的手指。 )

[1] => SimpleXMLElement Object ( [orig] => A balloon floated across the sky. [trans] => 气球飘过天空。 )

[2] => SimpleXMLElement Object ( [orig] => A bolt of lightning lit up the sky. [trans] => (一道)闪电照亮了天空。 )

[3] => SimpleXMLElement Object ( [orig] => A bright moving object appeared in the sky at sunset. [trans] => 日落西山时,天空出现了一个移动的发亮物体。 )

[4] => SimpleXMLElement Object ( [orig] => A bright rainbow arched above. [trans] => 一弯明亮的彩虹悬挂在天空。 )

)

)

“第二部分”将输出: 

例句:The church tower stood against the sky like a finger pointing towards heaven.
翻译:教堂的尖塔在天空的映衬下宛如指向天空的手指。
例句:A balloon floated across the sky.
翻译:气球飘过天空。
例句:A bolt of lightning lit up the sky.
翻译:(一道)闪电照亮了天空。
例句:A bright moving object appeared in the sky at sunset.
翻译:日落西山时,天空出现了一个移动的发亮物体。
例句:A bright rainbow arched above.
翻译:一弯明亮的彩虹悬挂在天空。

例子,更深入的一个遍历输出生成表格,代码如下:

eader("content-type:text/html; charset=utf-8"); //设置编码  
$xml = simplexml_load_file('a.xml'); //载入xml文件 $lists和xml文件的根节点是一样的  
echo $xml->company."<br>";  
echo $xml->town."<br>id:";  
echo $xml->town['id']."<br>parent:";  
echo $xml->town['parent']."<br>";  
  
echo "<br>循环读取:<br>";  
foreach($xml->user as $users){ //有多个user,取得的是数组,循环输出  
    echo "-------------------<br>";  
    echo "姓名:".$users->name."<br>";  
    echo "编号:".$users->age."<br>";  
    echo "性别:".$users->age['sex']."<br>";  
    echo "序号:".$users->height."<br>";  
}
  
echo "<br>循环读取:<br>";  
foreach($xml->town as $towns){ //有多个user,取得的是数组,循环输出  
    echo "-------------------<br>";  
    echo "id:".$towns['id']."<br>";  
    echo "归属:".$towns['parent']."<br>";  
    echo "地区:".$towns."<br>";  
}

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

php截取html字符串及自动补全html标签的方法
php导入excel文件到mysql数据库的方法
php正则匹配html中带class的div并选取其中内容的方法
PHP中使用CURL获取页面title例子
PHP中使用SimpleXML检查XML文件结构实例
phpQuery让php处理html代码像jQuery一样方便
php使用google地图应用实例
php读取mssql的ntext字段返回值为空的解决方法
php连接oracle数据库及查询数据的方法
php生成excel列名超过26列大于Z时的解决方法
PHP中使用xmlreader读取xml数据示例
Yii中使用PHPExcel导出Excel的方法
php中实现xml与mysql数据相互转换的方法
php提示Failed to write session data错误的解决方法
PHP使用xmllint命令处理xml与html的方法
php中Array2xml类实现数组转化成XML实例
PHP之sprintf函数用法详解
php实现的ping端口函数实例
PHP文件上传判断file是否己选择上传文件的方法
php中file_get_contents与curl性能比较分析
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 2611816 bytes)
php采用file_get_contents代替使用curl实例
PHP使用ob_start生成html页面的方法
PHP实现HTML生成PDF文件的方法
php中使用session_set_save_handler()函数把session保存到MySQL数据库实例
php实现singleton()单例模式实例
php以post形式发送xml的方法
php过滤表单提交的html等危险代码
set_exception_handler函数在ThinkPHP中的用法
推荐几款用 Sublime Text 开发 Laravel 所用到的插件
ThinkPHP做文字水印时提示call an undefined function exif_imagetype()解决方法
thinkphp视图模型查询提示ERR: 1146:Table 'db.pr_order_view' doesn't exist的解决方法
thinkphp中html:list标签传递多个参数实例
php生成xml时添加CDATA标签的方法
php输出xml必须header的解决方法
php的XML文件解释类应用实例
php操作XML、读取数据和写入数据的实现代码
©2014-2024 dbsqp.com