(PHP 5, PHP 7, PHP 8)
SoapServer::getFunctions — 返回已定义函数的列表
返回 SoapServer 对象中定义的函数列表。此方法返回由 SoapServer::addFunction() 或 SoapServer::setClass() 添加的所有函数的列表。
此函数没有参数。
一个包含定义函数的 array
。
示例 #1 SoapServer::getFunctions() 示例
<?php
$server = new SoapServer(NULL, array("uri" => "http://test-uri"));
$server->addFunction(SOAP_FUNCTIONS_ALL);
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$server->handle();
} else {
echo "This SOAP server can handle following functions: ";
$functions = $server->getFunctions();
foreach($functions as $func) {
echo $func . "\n";
}
}
?>