2024年PHP开发者大会日本站

xmlrpc_server_register_introspection_callback

(PHP 4 >= 4.1.0, PHP 5, PHP 7)

xmlrpc_server_register_introspection_callback注册一个PHP函数来生成文档

描述

xmlrpc_server_register_introspection_callback(资源 $server, 字符串 $function): 布尔值
警告

此函数为实验性功能。此函数的行为、名称和相关文档可能会在PHP的未来版本中发生更改,恕不另行通知。使用此函数需自行承担风险。

警告

此函数目前没有文档;只有其参数列表可用。

添加注释

用户贡献的注释 2条注释

ronadaassoc at gmail dot com
2年前
<?xml version='1.0'?>
<introspection version='1.0'>
<methodList>
<methodDescription name='introspection.hello'>
<author>Dan Libby</author>
<purpose>问候调用者并演示内省机制的使用</purpose>
<signatures>
<signature>
<params>
<value type='string' name='name'>调用者的名称</value>
</params>
<returns>
<value type='string'>对调用者的问候</value>
</returns>
</signature>
</signatures>
<see><item>system.listMethods</item></see>
<examples/>
<errors>
<item>如果未指定调用者的名称,则返回错误代码1</item>
</errors>
<notes>
<item>这是一个简单的示例</item>
<item>多个注释的示例</item>
</notes>
<bugs/>
<todo/>
</methodDescription>
</methodList>
</introspection>
giunta dot gaetano at gmail dot com
3年前
内省回调函数应返回具有以下格式的XML字符串

<?xml version='1.0'?>
<introspection version='1.0'>
<methodList>
<methodDescription name='introspection.hello'>
<author>Dan Libby</author>
<purpose>问候调用者并演示内省机制的使用</purpose>
<signatures>
<signature>
<params>
<value type='string' name='name'>调用者的名称</value>
</params>
<returns>
<value type='string'>对调用者的问候</value>
</returns>
</signature>
</signatures>
<see><item>system.listMethods</item></see>
<examples/>
<errors>
<item>如果未指定调用者的名称,则返回错误代码1</item>
</errors>
<notes>
<item>这是一个简单的示例</item>
<item>多个注释的示例</item>
</notes>
<bugs/>
<todo/>
</methodDescription>
</methodList>
</introspection>
To Top