dpca4790 2012-05-08 11:24
浏览 209
已采纳

Simplexml_load_string可以直接链接到XML文件,但不能与file_get_contents('php:// input')一起使用

Searched a lot for this on StackOverflow and Google but can't seem to find an answer to this specific situation

I'm working with a client that sends me an XML file via PHP POST and this is the code I use:

$xml = file_get_contents('php://input');
$xmlStripped = stripslashes($xml);
$xmlContent = simplexml_load_string($xmlStripped);
print_r($xmlContent);

For testing I also uploaded the XML file directly to my server and did it like this:

$xml = file_get_contents('http://www.site.com/linktoxml.xml');
$xmlStripped = stripslashes($xml);
$xmlContent = simplexml_load_string($xmlStripped);
print_r($xmlContent);

And then it works fine, it prints out the XML as an object.

The form I use to upload is like this:

<form action="http://app.site.com/upload" method="POST">
<input type="file" name="file" id="file ">
<input type="submit" value="upload">
</form>
  • 写回答

2条回答 默认 最新

  • duanran3115 2012-05-08 11:28
    关注

    file_get_contents('php://input'); would normally give you the raw RFC 1867 data, not the file itself. The file data is enveloped inside this request data. In your case, it gives an empty string because PHP discards such data after processing it in order to save memory.

    PHP, however, automatically processes and decodes the RFC 1867 data. What you have to do is (besides validating that $_FILES['file']['tmp_name'] exists and is a string):

    $xml = file_get_contents($_FILES['file']['tmp_name']);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!