从Nusoap返回数组(未定义索引)

时间:2018-06-12 05:05:10

标签: php

我试图用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;

0 个答案:

没有答案