mirror of
https://github.com/php/web-php.git
synced 2026-03-31 11:42:09 +02:00
25 lines
478 B
PHP
25 lines
478 B
PHP
<?php require "header.inc"; ?>
|
|
<h1>Session Support</h1>
|
|
|
|
<?php example('<?php
|
|
session_start();
|
|
if (!session_is_registered("mySession")) {
|
|
session_register("mySession");
|
|
}
|
|
?>
|
|
'); ?>
|
|
|
|
<h2>Session Data Backends</h2>
|
|
<?php example('<?php
|
|
|
|
session_set_save_handler("myOpen", "myClose",
|
|
"myRead", "myWrite",
|
|
"myDestroy", "myGC");
|
|
session_module_name("mm");
|
|
|
|
session_module_name("files");
|
|
?>
|
|
'); ?>
|
|
|
|
<?php require "footer.inc"; ?>
|