0

我正在尝试将soap xml请求发布到codeigniter方法。但它没有收到请求 xml。一切看起来都很好,但没有任何效果。
一个一个地尝试了所有注释的代码,但没有运气

function index()
{
  if($_SERVER['REQUEST_METHOD'] === 'POST')
  {
   //echo "Dude! This is cool."; Works Fine!
   //echo $this->input->get_post();
   //echo $this->input->post();
   //echo $this->input->post(NULL,TRUE);

   print_r($_POST);
  } else {
        echo "Dude! This is not cool.";
  }
}
4

2 回答 2

0

扩展输入类,在 /application/core/ 中创建一个 {subclass_prefix}_Input.php 文件

于 2013-05-29T08:17:27.950 回答
0

尝试

function index()
{
  if($_SERVER['REQUEST_METHOD'] == 'POST')
  {
   $data = file_get_contents("php://input");
   echo $data;

  } else {
        echo "Dude! This is not cool.";
  }
}
于 2013-05-29T20:58:02.827 回答