“INI_SET PHP” Ответ

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

Ответы похожие на “INI_SET PHP”

Вопросы похожие на “INI_SET PHP”

Больше похожих ответов на “INI_SET PHP” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования