“PHP INI_SET” Code-Antworten

Ini_Set PHP

/**
 Change the configuration option value to $value.
 the php config will be changed only during the execution of the php script
*/
ini_set ( $option, $value );
Sorann

PHP INI_SET

// Now server will keep session data for 2 hour

ini_set('session.gc_maxlifetime', 7200);

// All clients will remember their session id for EXACTLY 2 hour

session_set_cookie_params(7200); 
warner smith

Ähnliche Antworten wie “PHP INI_SET”

Fragen ähnlich wie “PHP INI_SET”

Weitere verwandte Antworten zu “PHP INI_SET” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen