mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
Fix the second parameter of SessionHandlerInterface::open(), which is the
session name, not the session ID. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@327574 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
9efc55b094
commit
303d4e7914
1 changed files with 4 additions and 3 deletions
|
@ -12,7 +12,7 @@
|
|||
<methodsynopsis>
|
||||
<modifier>abstract</modifier> <modifier>public</modifier> <type>bool</type><methodname>SessionHandlerInterface::open</methodname>
|
||||
<methodparam><type>string</type><parameter>save_path</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>session_id</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>name</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Re-initialize existing session, or creates a new one. Called when a session starts or when
|
||||
|
@ -32,10 +32,10 @@
|
|||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>session_id</parameter></term>
|
||||
<term><parameter>name</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
The session id.
|
||||
The session name.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
@ -53,6 +53,7 @@
|
|||
&reftitle.seealso;
|
||||
<para>
|
||||
<simplelist>
|
||||
<member><function>session_name</function></member>
|
||||
<member>
|
||||
The <link linkend="ini.session.auto-start">session.auto-start</link>
|
||||
configuration directive.
|
||||
|
|
Loading…
Reference in a new issue