這篇文章主要介紹了關於php產生xml資料的方法,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
1.php產生xml資料一般有2種方式,一個是組裝字串,另一個是使用php內建的系統類別
# 2.使用php內建類別產生xml資料
#3.拼裝字串產生xml資料
public function static xml(){ header("Content-type:text/xml;"); $xml = "<?xml version='1.0' encoding='UTF-8'?>\n"; $xml .= "<root>\n"; $xml .= "<code>200</code>\n"; $xml .= "<message>数据返回成功</message>\n"; $xml .= "<data>\n"; $xml .= "<id>1</id>\n"; $xml .= "<name>yangzl</name>\n"; $xml .= "</data>\n"; $xml .= "</root>\n"; echo $xml; } Respine::xml();
以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!
相關推薦:
以上是php生成xml資料的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!