如何使用 nusoap 库使用网络服务 php

how to use webservice using nusoap library php

我已经尝试使用某些站点的网络服务, 我使用 nusoap 库和我的 php 代码是这样的

  <?php
   require_once('lib/nusoap.php');

   $client = new SoapClient("http://simlitabmas.dikti.go.id/ws_pimnas/ws.svc?wsdl");

  $err = $client->getError();
  if ($err) {
      echo '<h2>errorr BOSSSS </h2><pre>' . $err . '</pre>';
  }

  $param = "examplekeyword";
  $param2 = "001029";
  $result = $client->call('get_peserta',array("keyword"=>"$param","kode_perguruan_tinggi"=>"$param2"));


if (!empty($result)) {

echo "<table border=1>";
echo "<tr bgcolor='#cccccc'>";
echo "<th>Name</th>";
echo "<th>Nomor Mahasiswa</th>";

echo "</tr>";
foreach ($result as $item) {
    echo "<tr>";
    echo "<td>".$item['nama']."</td>";
    echo "<td>".$item['nomor_mahasiswa']."</td>";
    echo "</tr>";
}
echo "</table>";

}
 ?>

函数get_peserta有两个参数需要输入。 当我测试我的 php 代码时,我得到了空白页。有帮助吗?

使用 http://simlitabmas.dikti.go.id/ws_pimnas/ws.svc?wsdl, you could generate the corresponding package from wsdltophp.com 中的 WSDL 来确定如何在 PHP 中构建您的请求,因为每个元素都是一个带有 setters/getters 的 PHP 对象。如果您需要任何其他帮助,请告诉我,