mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
Fix a couple typo's
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@143350 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
1ab9c006b0
commit
2eea72f2ab
1 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<refentry id="function.session-regenerate-id">
|
||||
<refnamediv>
|
||||
<refname>session_regenerate_id</refname>
|
||||
|
@ -32,10 +32,10 @@ $old_sessionid = session_id();
|
|||
|
||||
session_regenerate_id();
|
||||
|
||||
$new_sessionid = session_id()
|
||||
$new_sessionid = session_id();
|
||||
|
||||
print "Old Session: $old_session<br>";
|
||||
print "New Session: $new_session<br>";
|
||||
print "Old Session: $old_sessionid<br>";
|
||||
print "New Session: $new_sessionid<br>";
|
||||
|
||||
print_r($_SESSION);
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue