“php ini_set” Código de respuesta

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

Respuestas similares a “php ini_set”

Preguntas similares a “php ini_set”

Más respuestas relacionadas con “php ini_set” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código