1.非wsdl模式

(1)函数文件

testphp/ServiceFunctions.class.php

<?php

/** 
 * @author 左小兵
 * 
 */
class ServiceFunctions  {

    public    function getDisplayName($f,$l) {
        $name='';
        $name.=$f;
        $name.=$l;
        return $name;
    }
    public function countWords($c){
        return count($c);
    }
}

?>
View Code

相关文章:

  • 2021-11-16
  • 2022-12-23
  • 2022-12-23
  • 2021-08-29
  • 2021-12-14
猜你喜欢
  • 2021-12-25
  • 2021-04-07
  • 2021-12-04
  • 2021-08-20
  • 2022-01-07
  • 2021-11-17
相关资源
相似解决方案