2013-05-29 63 views
0

我正在嘗試將soap xml請求POST到codeigniter方法。但它沒有收到請求xml。一切看起來不錯,但沒有任何作品
一個,但沒有運氣嘗試了所有的註釋代碼一個在控制器中檢索POST請求正文

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."; 
    } 
} 

回答

0

嘗試

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

    } else { 
     echo "Dude! This is not cool."; 
    } 
} 
+0

適合我...非常感謝。 –

+0

樂意幫忙;) – rinchik

0

擴展輸入類創建{} subclass_prefix文件_Input.php在/應用/核心/