我正处于短信应用程序的最后阶段,它将向不同的电话号码发送不同的短信。我将使用短信网关,我的研究让我使用cURL来实现拥有网关的公司的smpp api。我正在我的localhost上进行cURL的测试运行,看看我在应用程序上实现之前是否一切顺利(我希望它将值插入到表中),但它无法正常工作。所以我需要帮助我在哪里做错了。这是我的代码。感谢。
include 'sms_connect.php';
$sql="select name from sms";
$result=mysqli_query($link,$sql);
while($row=mysqli_fetch_assoc($result))
{
$name=$row['name'];
$url = "http://localhost/sms/index.php?name=".$name;
// create a new cURL resource
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
// grab URL and pass it to the browser
curl_exec($ch);
}
// close cURL resource, and free up system resources
curl_close($ch);
答案 0 :(得分:1)
做
$results = $curl_exec($ch);
echo $results;
查看输出。如果你得到你期望的输出,问题是当你在数据库中插入数据时,如果没有 - 你的cURL有问题,并在这里发布错误信息。