无法使用file_get_content或cURL来运行php脚本

时间:2013-06-26 19:43:21

标签: php curl file-get-contents

我有这个问题。 我在这里用这个脚本发送自动短信:

<?php
function get_data($url) {
    $ch = curl_init();
    $timeout = 5;
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
    $data = curl_exec($ch);
    curl_close($ch);
    return $data;
}

$returned_content = get_data('http://url.goes.here:8080/bulksms/bulksms?username=user&passwd=password&type=0&dlr=1&destination=phone&source=FLM&message=hello');
?>

问题是,如果我直接提交URL,我会得到类似的内容:

1701|355662080090|a2406d38-1baf-42a2-a1a5-e5798859e400

短信到达我的手机,但如果我使用上述方法我将不会收到短信.. 任何人都可以建议我为什么会这样? 感谢..

1 个答案:

答案 0 :(得分:0)

如果你在php.ini中激活了allow_url_fopen,那么你应该考虑更改请求的用户代理(使用cURL)。 许多SMS网关在处理请求时使用用户代理过滤... 如果我错了,请纠正我,但我想你使用RouteSMS,对吗?