php soap用法
程序员文章站
2022-06-07 19:25:24
...
准备:
outsider@outsiderla.me.....4
在使用soap之前先做好准备工作,在www目录下建一个文件,在文件下添加如下内容
运行此文件,看是否有soap这个模块,如果没有打开php.ini文件,将extension=php_soap.dll
前面的;去掉,重启apache。
客户端:
在www目录下新建一个php文件,文件名为client.php,在该文件下添加如下内容
"http://www.samples.com/Service.php",//服务端的文件位置 'uri'=> "","login" => "outsider","password" => "1234567"//访问服务端文件时的用户名和密码)); $user_info = json_decode($client->user_info());//服务端的方法 $result = $client->show(1,3);//服务端的方法 print_r($user_info->email.".....".$result); ?>服务端:
在www目录下新建一个php文件,文件名为Service.php,在该文件下添加如下内容
'Outsider', 'sex' => '男', 'email' => 'outsider@outsiderla.me', 'tel' => '1369*******', ); return json_encode($user_info); } } $server = new SoapServer(null, array('uri' => '', 'location' => 'http://www.samples.com/soapService.php')); $server->setClass('fuck');//注册fuck类 $server->handle(); ?>这样服务端和客户端写完了,现在访问客户端,结果为
outsider@outsiderla.me.....4
以上就介绍了php soap用法,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
上一篇: PHP memcache 队列类
下一篇: Mysql下优化SQL的一般步骤