PHP asXML() 函數
PHP asXML() 函數
實例
格式化 XML(版本 1.0)中的 SimpleXML 對象的數據:
<?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();
?>
運行實例 ?
定義和用法
asXML() 函數格式化 XML(版本 1.0)中的 SimpleXML 對象的數據。
語法
asXML(filename);
參數 | 描述 |
---|---|
filename | 可選。規定需要寫入數據的文件的名稱。 |
技術細節
返回值: | 如果成功則返回一個字符串,如果失敗則返回 FALSE。如果指定了 filename 參數,成功則返回 TRUE,失敗則返回 FALSE。 |
---|---|
PHP 版本: | 5.0.1+ |

相關文章
- PHP 教程
- PHP echo 和 print 語句
- PHP 字符串
- PHP 數組排序
- PHP For 循環
- PHP 函數
- PHP 面向對象
- PHP 包含文件 include 和 require 語句
- PHP 文件上傳
- PHP 錯誤處理
- PHP array_diff_ukey() 函數
- PHP array_replace_recursive() 函數
- PHP array_uintersect_uassoc() 函數
- PHP array_values() 函數
- PHP natcasesort() 函數
- PHP sort() 函數
- PHP 5 Directory 函數
- PHP Error 和 Logging 函數
- PHP HTTP 函數
- PHP PDO