Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
php-を使用してこのURLからデータとxml属性の値を読み取りたい
ジャーニープランナー
私はこれまでxmlを使ったことがないので、タスクを実行するための提案が必要です。
この目的のために使用simplexml_load_file(string $filename)することができます。この関数に次のような完全なURLを渡すだけです。
simplexml_load_file(string $filename)
$url="your url"; $xmlinfo = simplexml_load_file($url); print_r($xmlinfo);