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.
別の Web ページのコンテンツを解析する必要がある単純な PHP スクリプトがあります。HTMLコードをPHP変数に入れる最も簡単な方法は何ですか?
あなたのphpスクリプトで:
$html = file_get_contents('http://yourUrl.com'); echo $html;
ヘッダー/Cookie のシミュレートなど、より高度な機能が必要な場合は、- を調べてくださいcURL。
cURL