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 Simple HTML DOM Parser にユーザー エージェントを追加して、IP アドレスを持つすべての訪問者の各ユーザー エージェントで Web サイトを閲覧する方法。例やアイデア..ありがとう
ストリームコンテキストのオプションでユーザーエージェントを設定できます
<?php $opts = array( 'http' => array( 'user_agent' => 'Enter agent here', ) ); $context = stream_context_create($opts); libxml_set_streams_context($context); $doc = DOMDocument::load('URL');
?>