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 サイトの別のスクリプトから CURL によって呼び出されたときにスクリプトで認識する最良の方法は何ですか?
カスタム User-Agent ヘッダーを設定します。
$ch = curl_init(); curl_setopt($ch, CURLOPT_USERAGENT, 'your_custom_user_agent');
呼び出されるスクリプトでは、この内部要求を次のように認識できます。
if ($_SERVER['HTTP_USER_AGENT'] == 'your_custom_user_agent') { // This is internal request! }