SoapServer::setPersistence
(PHP 5 >= 5.1.2)
SoapServer::setPersistence — Sets SoapServer persistence mode
Описание
public void SoapServer::setPersistence
( string $mode
)
Замечание:
The persistence SOAP_PERSISTENCE_SESSION makes only
objects of the given class persistent, but not the class static data. In
this case, use $this->bar instead of self::$bar.
Список параметров
-
mode
-
One of the SOAP_PERSISTENCE_XXX constants.
SOAP_PERSISTENCE_REQUEST - persist the object for the duration of a request.
SOAP_PERSISTENCE_SESSION - persist the object for the duration of a session.