Join our community in the tech forums for uncut technology discussion.
SoapServer->setPersistence()
SoapServer->setPersistence() --
Sets persistence mode of SoapServer
Descriptionclass SoapServer { void setPersistence ( int mode ) }
This function allows saving data between requests in a PHP session. It works only
with a server that exports functions from a class with
SoapServer->setClass().
Parameters
- mode
One of the SOAP_PERSISTENCE_XXX constants.
Return Values
No value is returned.
Examples
Example 1. Some examples
<?php
$server->setPersistence(SOAP_PERSISTENCE_SESSION);
$server->setPersistence(SOAP_PERSISTENCE_REQUEST);
?>
|
|
Join our community in the tech forums for uncut technology discussion.
|