ホームページ >バックエンド開発 >PHPチュートリアル >PHP でアプリのインターフェースを書く (2) - PHP が XML データを生成する
メソッド xml() を Response.php ファイルに追加します。
public static function 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>singwa</name>\n"; $xml .="</data>\n"; $xml .="</root>"; echo $xml; }
<?php require_once('./Response.php'); Response::xml();?>