为什么我从PHP WEB服务获取一个空的返回值,该值在浏览器地址栏调用中有效?

时间:2013-08-05 14:04:34

标签: php web-services curl

好的,首先,我必须遗漏一些东西,所以我为可能会成为一个新问题而道歉...

我有一些复杂的代码无法正常工作,所以我把它放在这里或任何指针。我不能分享太多,因为它是专有的,所以这里。

我有三层:用户,服务器,设备。服务器和设备启用了php,客户端是IE或Chrome - 行为是相同的。

用户层将数据从HTML 5表单发送到服务器,服务器又将数据记录在数据库中,然后发送到设备 - 这一切都可以。

由于设备未启用https,我尝试设置触发/响应模型。这意味着向设备发送缩写消息或密钥(作为GUID),然后设备回调服务器以获取XML消息进行处理。回拨是使用get_file_contents()电话完成的。

所有部分似乎都在工作,服务器响应正在检索XML,而客户端正在正确地选择XML标头 - 但是当设备执行调用时,响应为空。

$result = file_get_contents($DestURL) ;
// If I call the value in $DestURL in a browser address 
// box - it all works
// If I echo the $result, it is empty, and then nothing 
// executes, except the last line.
if (strlen($result)== 0 ) {
    // ==> this is not executing <==
    $msg = "Failed to open the <a href='" . htmlspecialchars($DestURL) . "'> URL<a>: " . htmlspecialchars($DestURL);
    $result="Error";
}
// ==> this is not executing <<==
if ($result=="Error") 
    {
    /*
     * need to send an error message
     */
    }
else 
    {
    $result = PrintMessage($my_address, $result 
    }
// ==> This is executing <==
Echo "all Finished";
?>

任何人的想法都非常感谢。

Server Web服务如下所示:

<?php
   header("Content-type: text/xml");
   // a bunch of items getting the data from the database
   $result = mysqli_query($con, $sql);
   $row = mysqli_fetch_array($result);
   echo $row['message_XML'];
?>

1 个答案:

答案 0 :(得分:0)

我仍然没有真正的理由为什么会发生这种情况,但相关的帖子在这里有所帮助: PHP ini file_get_contents external url帮助了很多 - 感谢两位回复。

我已经将使用file_get_contents()的get更改为CURL调用。解决了问题。

以下是代码:

function get_message($URL)
{
  /*
   * This code has been lifted from stackoverflow: URL to the article
  */
  $ch = curl_init();
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt($ch, CURLOPT_URL, $URL);
  // Can also link in security bits here.
  $data = curl_exec($ch);
  curl_close($ch);
  return $data;
}