我试图用php创建NuSOAP WS,但是当我部署我的应用程序时 在我的设备中,我无法从我的WS获取数据,并从服务器获取此消息:
PHP Notice: Undefined index: in ...\lib\nusoap.php on line 6637
当我从SOAPUI测试我的方法时,我得到this。
当我从Http Analyzer测试我的方法时,我得到this。
我认为nusoap.php中存在一个错误,会自动添加标记" item"对于每个数组元素,但我无法解决它。
部分方法:
$notifications = array();
while($row=mysqli_fetch_assoc($result)){
$notification=new Notification();
$notification->titre=$row['titre'];
$notification->detail=$row['detail'];
$notification->dateHeure=$row[date];
$notification->code=$row['code'];
array_push($notifications,$notification);
}
return $notifications;