mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
Session name must contain a letter (bug #27688)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@191863 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
69dc12fb60
commit
0bc59fb3d5
1 changed files with 7 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- $Revision: 1.5 $ -->
|
||||
<!-- splitted from ./en/functions/session.xml, last change in rev 1.2 -->
|
||||
<refentry id="function.session-name">
|
||||
<refnamediv>
|
||||
|
@ -27,6 +27,12 @@
|
|||
for every request (and before <function>session_start</function>
|
||||
or <function>session_register</function> are called).
|
||||
</para>
|
||||
<warning>
|
||||
<para>
|
||||
Session name can't consist only from digits, at least one letter must be
|
||||
present. Otherwise new session id is generated every time.
|
||||
</para>
|
||||
</warning>
|
||||
<example>
|
||||
<title><function>session_name</function> examples</title>
|
||||
<programlisting role="php">
|
||||
|
|
Loading…
Reference in a new issue