识别CURL呼叫的最佳方式

时间:2012-05-22 08:30:41

标签: php curl

当我的网站上的另一个脚本调用CURL时,在脚本中识别的最佳方法是什么?

1 个答案:

答案 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!
}