当我的网站上的另一个脚本调用CURL时,在脚本中识别的最佳方法是什么?
答案 0 :(得分:2)
设置自定义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!
}