reference/session/sessionhandler/open.xml
601f6f4ce5827d441a7e110184708f0abe9fd447
...
...
@@ -1,6 +1,5 @@
1
1
<?xml version="1.0" encoding="utf-8"?>
2
2
<!-- $Revision$ -->
3
-

4
3
<refentry xml:id="sessionhandler.open" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
5
4
<refnamediv>
6
5
<refname>SessionHandler::open</refname>
...
...
@@ -9,10 +8,10 @@
9
8

10
9
<refsect1 role="description">
11
10
&reftitle.description;
12
-
<methodsynopsis>
11
+
<methodsynopsis role="SessionHandler">
13
12
<modifier>public</modifier> <type>bool</type><methodname>SessionHandler::open</methodname>
14
-
<methodparam><type>string</type><parameter>save_path</parameter></methodparam>
15
-
<methodparam><type>string</type><parameter>session_name</parameter></methodparam>
13
+
<methodparam><type>string</type><parameter>path</parameter></methodparam>
14
+
<methodparam><type>string</type><parameter>name</parameter></methodparam>
16
15
</methodsynopsis>
17
16
<para>
18
17
Create new session, or re-initialize existing session. Called internally by PHP when
...
...
@@ -24,9 +23,9 @@
24
23
before this handler was set by <function>session_set_save_handler</function>.
25
24
</para>
26
25
<para>
27
-
If this class is extended by inheritiance, calling the parent <parameter>open</parameter> method will invoke the
28
-
wrapper for this method and therefor invoke the associated internal callback. This allows this method to be
29
-
overidden and or intercepted and filtered.
26
+
If this class is extended by inheritance, calling the parent <parameter>open</parameter> method will invoke the
27
+
wrapper for this method and therefore invoke the associated internal callback. This allows this method to be
28
+
overridden and or intercepted and filtered.
30
29
</para>
31
30
<para>
32
31
For more information on what this method is expected to do, please refer to the documentation at
...
...
@@ -38,7 +37,7 @@
38
37
&reftitle.parameters;
39
38
<variablelist>
40
39
<varlistentry>
41
-
<term><parameter>save_path</parameter></term>
40
+
<term><parameter>path</parameter></term>
42
41
<listitem>
43
42
<para>
44
43
The path where to store/retrieve the session.
...
...
@@ -46,7 +45,7 @@
46
45
</listitem>
47
46
</varlistentry>
48
47
<varlistentry>
49
-
<term><parameter>session_name</parameter></term>
48
+
<term><parameter>name</parameter></term>
50
49
<listitem>
51
50
<para>
52
51
The session name.
...
...
@@ -77,7 +76,6 @@
77
76

78
77

79
78
</refentry>
80
-

81
79
<!-- Keep this comment at the end of the file
82
80
Local variables:
83
81
mode: sgml
84
82