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.
特定のオンライン ラジオ/テレビ放送の URL から曲名または番組名の詳細を取得したいと考えています。この URL は、拡張子が *.pls のファイルまたは mms プロトコルの形式のファイルである可能性があります。
Web リクエストのテクニック、php のライブラリ、または一般的な言語はありますか?
この回答が役立つかどうかはわかりませんが、解決策につながる可能性があります
$url = parse_url(URL);
上記のURLは、次の形式の配列を提供します
Array
( [scheme] => http [host] => eksensc.radyotvonline.com [path] => /listen.pls )
$url['path']その配列から取得できます
$url['path']
それが役立つことを願っています!ありがとう