file_get_contents()没有响应 – php

我试图调用一个基本上看起来像这样的Web服务:

http://10.10.10.10:8080/gw/someAction?amount=10&description='Some description'

这就是我称之为Web服务的方式:

$endpoint = "http://10.10.10.10:8080/gw/someAction?amount=10&description='Some description'";

    $opts = array('http' =>
            array(
                    'method' => 'GET',
                    'header'  => 'Content-type: application/xml'
            )
    );

    $context  = stream_context_create( $opts );

    $result = file_get_contents( $endpoint, false, $context );
    $xml_result = simplexml_load_string( $result );
    echo $xml_result->success;

所以在这里,我什么都没有,xml_result是空的.这是有趣的部分 – 当我从描述中删除空格时:

 http://10.10.10.10:8080/gw/someAction?amount=10&description='Somedescription'

一切都很好,我从网络服务得到答案.还尝试使用chrome rest客户端调用Web服务和描述中的空白区域,一切正常,我有回复.所以这导致我在这里使用Web服务中的空格来处理某种PHP问题.请帮忙 !

更新:

print_r($result)

结果是

1

解决方法:

这不是有效的URL,必须转义空格:

http://10.10.10.10:8080/gw/someAction?amount=10&description='Some%20description'

你可能想看看How to properly URL encode a string in PHP?.

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...