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:
Adam Harvey 2012-09-10 02:16:51 +00:00
parent 9efc55b094
commit 303d4e7914

View file

@ -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.