これをスクリプトで使用します。
$xml = file_get_contents('gapi.account.php');
print_r($xml);
簡単ですよね?
しかし今... gapi.account.php が解析されていません。これを行う方法は? 解析されたファイルの出力は xml です。
ありがとう!
外部からファイルを取得する必要があります。実行します。
$xml = file_get_contents('http://www.example.org/gapi.account.php');
print_r($xml);
file_get_contents
フェッチしたものは何も実行しません。サーバーは実際にそれを行うため、次のようにサーバー上のファイルとして呼び出す必要がありますfile_get_contents('http://mydomain.com/gapi.account.php');