我一直在尝试实现一个从我们发送到 Plivo 的 SMS 中检索数据的功能。目前在我的网站上,我可以发送短信,检查状态,但我希望用户能够响应这些短信并将这些数据存储到我的数据库中。我按照这里的文档进行操作, 我有这个控制器:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Receive extends CI_Controller {
function __construct()
{
parent::__construct();
$this->load->model('receive_model');
}
public function index()
{
// Sender's phone numer
$from_number = $this->input->get("From");
// Receiver's phone number - Plivo number
$to_number = $this->input->get("To");
// The SMS text message which was received
$text = $this->input->get("Text");
// Output the text which was received to the log file.
// error_log("Message received - From: ".$from_number.", To: ".$to_number. ", Text: ".$text);
$arr = array("from" => $from_number, "to" => $to_number, "text" => $text);
$this->receive_model->add($arr);
}
}
在示例中,他们使用了 $_REQUEST,但它似乎在 Codeigniter 上不起作用,所以我尝试使用 $this->input->get("From") 但没有成功。Plivo 收到短信,它写在 Plivo 日志上,我写了指向这个控制器的 URL。
任何想法 ?