SoapServer->setPersistence()

SoapServer->setPersistence() --  Sets persistence mode of SoapServer

Popis

class 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().

Parametre

mode

One of the SOAP_PERSISTENCE_XXX constants.

Vrátené hodnoty

Nevr�ti sa �iadna hodnota.

Príklady

Príklad 1. Some examples

<?php

$server
->setPersistence(SOAP_PERSISTENCE_SESSION);

$server->setPersistence(SOAP_PERSISTENCE_REQUEST);

?>

Tiež pozri

SoapServer->__construct()
SoapServer->setClass()