PHP asXML() 函數(shù)
PHP asXML() 函數(shù)
實例
格式化 XML(版本 1.0)中的 SimpleXML 對象的數(shù)據(jù):
<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
XML;
$xml=new SimpleXMLElement($note);
echo $xml->asXML();
?>
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
XML;
$xml=new SimpleXMLElement($note);
echo $xml->asXML();
?>
運(yùn)行實例 ?
定義和用法
asXML() 函數(shù)格式化 XML(版本 1.0)中的 SimpleXML 對象的數(shù)據(jù)。
語法
asXML(filename);
參數(shù) | 描述 |
---|---|
filename | 可選。規(guī)定需要寫入數(shù)據(jù)的文件的名稱。 |
技術(shù)細(xì)節(jié)
返回值: | 如果成功則返回一個字符串,如果失敗則返回 FALSE。如果指定了 filename 參數(shù),成功則返回 TRUE,失敗則返回 FALSE。 |
---|---|
PHP 版本: | 5.0.1+ |

相關(guān)文章
- PHP 教程
- PHP echo 和 print 語句
- PHP 字符串
- PHP 數(shù)組排序
- PHP For 循環(huán)
- PHP 函數(shù)
- PHP 面向?qū)ο?/a>
- PHP 包含文件 include 和 require 語句
- PHP 文件上傳
- PHP 錯誤處理
- PHP array_diff_ukey() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP array_values() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP sort() 函數(shù)
- PHP 5 Directory 函數(shù)
- PHP Error 和 Logging 函數(shù)
- PHP HTTP 函數(shù)
- PHP PDO