SoapServer->setClass()
Sets class which will handle SOAP requests
&reftitle.description;
SoapServer
voidsetClass
stringclass_name
mixedargs
mixed...
Exports all methods from specified class.
The object can be made persistent across request for a given PHP session
with the method.
&reftitle.parameters;
class_name
The name of the exported class.
args
These optional parameters will be passed to the default class constructor
during object creation.
&reftitle.returnvalues;
&return.void;
&reftitle.examples;
Some examples
setClass("foo");
class bar {
function bar($x, $y)
{
}
}
$server->setClass("bar", $arg1, $arg2);
?>
]]>
&reftitle.seealso;