如何显示调用soap服务时调用的多个方法

时间:2017-12-13 13:15:23

标签: php soap yii2-advanced-app

我想在soap服务中调用多个方法 以下是我的代码

class TestController extends Controller {
    public function actions()
    {
       return [
          'GetService' => 'mongosoft\soapserver\Action',
      ];

}

/**
 * @soap
 */
public function GetMyService($a,$d)
{

}

public function GetMyService1($b,$d)
{} }

我想列出在GetService中编写的所有方法,即GetMyService($ a,$ b)和GetMyService1($ b,$ b)。请为此问题提供解决方案

0 个答案:

没有答案