php-doc-en/reference/soap/functions/SoapServer-setClass.xml
Mehdi Achour 06c980ee99 See also
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@152556 c90b9560-bf6c-de11-be94-00142212c4b1
2004-02-27 16:36:36 +00:00

77 lines
1.9 KiB
XML

<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.3 $ -->
<refentry id="function.SoapServer-setClass">
<refnamediv>
<refname>SoapServer::setClass</refname>
<refpurpose>
Sets class which will handle SOAP requests
</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>void</type><methodname>SoapServer::setClass</methodname>
<methodparam><type>string</type><parameter>class_name</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>args</parameter></methodparam>
</methodsynopsis>
<para>
Exports all methods from specified class. Additional parameters <parameter>args</parameter>
will be passed to the default class constructor during object creation.
The object can be made persistent across request for a given PHP session
with the <function>SoapServer::setPersistence</function> method.
</para>
<para>
<example>
<title>Some examples</title>
<programlisting role="php">
<![CDATA[
<?php
class foo {
function foo()
{
}
}
$server->setClass("foo");
class bar {
function bar($x, $y)
{
}
}
$server->setClass("bar", $arg1, $arg2);
?>
]]>
</programlisting>
</example>
</para>
<para>
See also
<function>SoapServer::SoapServer</function>,
<function>SoapServer::addFunction</function>, and
<function>SoapServer::setPersistence</function>.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->