在 php 5.6(php soap) 中创建 webservice 并出现 php nusoap 库问题
Create webservice in php 5.6(php soap) and issues with php nusoap library
我有一个带有 nusoap 库的网络服务,nusoap 在 php 5.3 和 5.5 上工作正常,但目前我在 php 5.6 上工作,在使用 nusoap 库时遇到以下错误:
Automatically populating $HTTP_RAW_POST_DATA is deprecated and will be removed in a future version. To avoid this warning set 'always_populate_raw_post_data' to '-1' in php.ini and use the php://input stream instead. in Unknown on line 0
我对这个问题进行了很多研究,但没有成功。
我试图找到与 php 5.6 兼容的 nusoap 版本,但找不到任何解决方案,最后决定使用 SoapServer 和 SoapClient 并使用以下代码进行测试:
<?php
class MyAPI {
function hello() {
return "Hello";
}
}
$options=array('uri'=>'http://xx.com:800/webservice/');
$server = new SoapServer(NULL,$options);
$server->setClass('MyAPI');
$server->handle();
?>
以下为客户端文件:
<?php
$options = array('location' => 'http://xx.com:800/webservice/server.php',
'uri' => 'http://xx.com:800/webservice/');
$api = new SoapClient(NULL, $options);
echo $api->hello();
?>
但是当我调用客户端文件时遇到以下错误:
Fatal error: Uncaught SoapFault exception: [Client] looks like we got no XML document in PATH\webservice\client.php:11 Stack trace: #0 PATH\webservice\client.php(11): SoapClient->__call('hello', Array) #1 PATH\webservice\client.php(11): SoapClient->hello() #2 {main} thrown in PATH\webservice\client.php on line 11
你能给我最好的解决方案吗?
$HTTP_POST_RAW_DATA 在 PHP 5.6 中已弃用
你必须使用 file_get_contents("php://input");
我有一个带有 nusoap 库的网络服务,nusoap 在 php 5.3 和 5.5 上工作正常,但目前我在 php 5.6 上工作,在使用 nusoap 库时遇到以下错误:
Automatically populating $HTTP_RAW_POST_DATA is deprecated and will be removed in a future version. To avoid this warning set 'always_populate_raw_post_data' to '-1' in php.ini and use the php://input stream instead. in Unknown on line 0
我对这个问题进行了很多研究,但没有成功。
我试图找到与 php 5.6 兼容的 nusoap 版本,但找不到任何解决方案,最后决定使用 SoapServer 和 SoapClient 并使用以下代码进行测试:
<?php
class MyAPI {
function hello() {
return "Hello";
}
}
$options=array('uri'=>'http://xx.com:800/webservice/');
$server = new SoapServer(NULL,$options);
$server->setClass('MyAPI');
$server->handle();
?>
以下为客户端文件:
<?php
$options = array('location' => 'http://xx.com:800/webservice/server.php',
'uri' => 'http://xx.com:800/webservice/');
$api = new SoapClient(NULL, $options);
echo $api->hello();
?>
但是当我调用客户端文件时遇到以下错误:
Fatal error: Uncaught SoapFault exception: [Client] looks like we got no XML document in PATH\webservice\client.php:11 Stack trace: #0 PATH\webservice\client.php(11): SoapClient->__call('hello', Array) #1 PATH\webservice\client.php(11): SoapClient->hello() #2 {main} thrown in PATH\webservice\client.php on line 11
你能给我最好的解决方案吗?
$HTTP_POST_RAW_DATA 在 PHP 5.6 中已弃用 你必须使用 file_get_contents("php://input");