我可以使用以下表格发送短信
<form action="http://myserviceprovider/myname/server.php" method="post">
<input type="hidden" value="MyUsername" name="user" />
<input type="hidden" value="MyPassword" name="pass" />
<input type="hidden" value="MyKey" name="sid" />
<input type="hidden" value="12345678" name="sms[0][0]" />
<input type="hidden" value="MyFrist SMS Text" name="sms[0][1]" />
<input type="hidden" value="97654321" name="sms[1][0]" />
<input type="hidden" value="MySecond SMS Text" name="sms[1][1]" />
<input type="submit" />
</form>
现在我正在尝试使用 PHP cURL 发送短信。我创建了一个包含手机号码和消息的数组:
$sms =array(
array("0" => "12345678", "1" => "MyFrist SMS Text"),
array("0" => "97654321", "1" => "MySecond SMS Text")
);
问题是我无法弄清楚如何使用以下方法准确发送包括用户名、密码和 Mykey 在内的值
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS,http_build_query($post));
curl_exec($ch);
你能告诉我如何解决这个问题吗?