logo
  • 教程列表
  • SO官方文档
  • SOAP 服务器
    • 基本 SOAP 服务器
  1. StackOverflow 文档
  2. PHP 教程
  3. SOAP 服务器
  4. 基本 SOAP 服务器

基本 SOAP 服务器

Created: November-22, 2018

function test($x)
{
    return $x;
}

$server = new SoapServer(null, array('uri' => "http://test-uri/"));
$server->addFunction("test");
$server->handle();
  • SOAP 服务器

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 关于我们
  • 免责声明