File: setcookie.xml

package info (click to toggle)
phpdoc 20050512-1
  • links: PTS
  • area: non-free
  • in suites: sarge
  • size: 36,592 kB
  • ctags: 1,501
  • sloc: xml: 376,768; php: 6,708; cpp: 500; makefile: 293; perl: 161; sh: 151; awk: 28
file content (370 lines) | stat: -rw-r--r-- 14,070 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.36 $ -->
<!-- splitted from ./en/functions/http.xml, last change in rev 1.2 -->
  <refentry id="function.setcookie">
   <refnamediv>
    <refname>setcookie</refname>
    <refpurpose>Send a cookie</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Description</title>
     <methodsynopsis>
      <type>bool</type><methodname>setcookie</methodname>
      <methodparam><type>string</type><parameter>name</parameter></methodparam>
      <methodparam choice="opt"><type>string</type><parameter>value</parameter></methodparam>
      <methodparam choice="opt"><type>int</type><parameter>expire</parameter></methodparam>
      <methodparam choice="opt"><type>string</type><parameter>path</parameter></methodparam>
      <methodparam choice="opt"><type>string</type><parameter>domain</parameter></methodparam>
      <methodparam choice="opt"><type>bool</type><parameter>secure</parameter></methodparam>
     </methodsynopsis>
    <para>
     <function>setcookie</function> defines a cookie to be sent along
     with the rest of the HTTP headers. Like other headers, cookies
     must be sent <emphasis>before</emphasis> any output from your
     script (this is a protocol restriction). This requires that you
     place calls to this function prior to any output, including
     <literal>&lt;html&gt;</literal> and <literal>&lt;head&gt;</literal> tags
     as well as any whitespace. If output exists prior to calling this
     function, <function>setcookie</function> will fail and return &false;.
     If <function>setcookie</function> successfully runs, it will return
     &true;. This does not indicate whether the user accepted the cookie.
    </para>
    <note>
     <para>
      As of PHP 4, you can use output buffering to send output prior to the 
      call of this function, with the overhead of all of your output to the 
      browser being buffered in the server until you send it. You can do this 
      by calling <function>ob_start</function> and 
      <function>ob_end_flush</function> in your script, or setting the 
      <literal>output_buffering</literal> configuration directive on in your 
      &php.ini; or server configuration files.
     </para>
    </note>    
    <para>
     All the arguments except the <parameter>name</parameter> argument
     are optional. You may also replace an argument with an empty string
     (<emphasis>&quot;&quot;</emphasis>) in order to skip that
     argument. Because the <parameter>expire</parameter>
     argument is integer, it cannot
     be skipped with an empty string, use a zero (<emphasis>0</emphasis>)
     instead.  The following table explains each parameter of the 
     <function>setcookie</function> function, be sure to read the  
     <ulink url="&spec.cookies;">Netscape cookie specification</ulink> for
     specifics on how each <function>setcookie</function> parameter works
     and <ulink url="&url.rfc;2965">RFC 2965</ulink> for additional
     information on how HTTP cookies work. 
    </para>
    <para>
     <table>
      <title><function>setcookie</function> parameters explained</title>
      <tgroup cols="3">
       <thead>
        <row>
         <entry>Parameter</entry>
         <entry>Description</entry>
         <entry>Examples</entry>
        </row>
       </thead>
       <tbody>
        <row>
         <entry><parameter>name</parameter></entry>
         <entry>
          The name of the cookie.
         </entry>
         <entry>
          'cookiename' is called as <varname>$_COOKIE['cookiename']</varname>
         </entry>
        </row>
        <row>
         <entry><parameter>value</parameter></entry>
         <entry>
          The value of the cookie.  This value is stored on the clients
          computer; do not store sensitive information.
         </entry>
         <entry>
          Assuming the <parameter>name</parameter> is 'cookiename', this
          value is retrieved through <varname>$_COOKIE['cookiename']</varname>
         </entry>
        </row>
        <row>
         <entry><parameter>expire</parameter></entry>
         <entry>
          The time the cookie expires.  This is a Unix timestamp so is
          in number of seconds since the epoch.  In other words, you'll
          most likely set this with the <function>time</function> function
          plus the number of seconds before you want it to expire.  Or
          you might use <function>mktime</function>.
         </entry>
         <entry>
          <literal>time()+60*60*24*30</literal> will set the cookie to
          expire in 30 days.  If not set, the cookie will expire at
          the end of the session (when the browser closes).
         </entry>
        </row>
        <row>
         <entry><parameter>path</parameter></entry>
         <entry>
          The path on the server in which the cookie will be available on.
         </entry>
         <entry>
          If set to <literal>'/'</literal>, the cookie will be available
          within the entire <parameter>domain</parameter>.  If set to
          <literal>'/foo/'</literal>, the cookie will only be available
          within the <literal>/foo/</literal> directory and all
          sub-directories such as <literal>/foo/bar/</literal> of
          <parameter>domain</parameter>.  The default value is the
          current directory that the cookie is being set in.
         </entry>
        </row>
        <row>
         <entry><parameter>domain</parameter></entry>
         <entry>
          The domain that the cookie is available.
         </entry>
         <entry>
          To make the cookie available on all subdomains of example.com
          then you'd set it to <literal>'.example.com'</literal>.  The
          <literal>.</literal> is not required but makes it compatible 
          with more browsers.  Setting it to <literal>www.example.com</literal>
          will make the cookie only available in the <literal>www</literal>
          subdomain.  Refer to tail matching in the 
          <ulink url="&spec.cookies;">spec</ulink> for details.
         </entry>
        </row>
        <row>
         <entry><parameter>secure</parameter></entry>
         <entry>
          Indicates that the cookie should only be transmitted over a 
          secure HTTPS connection. When set to &true;, the
          cookie will only be set if a secure connection exists. The default
          is &false;.
         </entry>
         <entry>
          <literal>0</literal> or <literal>1</literal>
         </entry>
        </row>
       </tbody>
      </tgroup>
     </table>
    </para>
    <para>
     Once the cookies have been set, they can be accessed on the next page load
     with the <link linkend="reserved.variables.cookies">$_COOKIE</link> or 
     <varname>$HTTP_COOKIE_VARS</varname> arrays.  Note,
     <link linkend="language.variables.superglobals">autoglobals</link> 
     such as <varname>$_COOKIE</varname> became available in PHP
     <ulink url="&url.php.release4.1.0;">4.1.0</ulink>.
     <varname>$HTTP_COOKIE_VARS</varname> has existed since PHP 3.  Cookie
     values also exist in <link linkend="reserved.variables.request">
     $_REQUEST</link>.
    </para>
    <note>
     <para>
      If the PHP directive <link linkend="ini.register-globals">register_globals</link>
      is set to <literal>on</literal> then cookie values will also be made into
      variables.  In our examples below, <varname>$TestCookie</varname> will
      exist.  It's recommended to use <varname>$_COOKIE</varname>.
     </para>
    </note>
    <para>
     Common Pitfalls:
     <itemizedlist>
      <listitem>
       <simpara>
        Cookies will not become visible until the next loading of a page that 
        the cookie should be visible for.  To test if a cookie was successfully 
        set, check for the cookie on a next loading page before the cookie 
        expires.  Expire time is set via the <parameter>expire</parameter> 
        parameter.  A nice way to debug the existence of cookies is by
        simply calling <literal>print_r($_COOKIE);</literal>.
       </simpara>
      </listitem>
      <listitem>
       <simpara>
        Cookies must be deleted with the same parameters as they were set with.
        If the value argument is an empty string, or &false;, and all other arguments
        match a previous call to setcookie, then the cookie with the specified
        name will be deleted from the remote client.
       </simpara>
      </listitem>
      <listitem>
       <simpara>
        Because setting a cookie with a value of &false; will try to delete the cookie,
        you should not use boolean values. Instead, use <emphasis>0</emphasis> for &false;
        and <emphasis>1</emphasis> for &true;.
       </simpara>
      </listitem>
      <listitem>
       <simpara>
        Cookies names can be set as array names and will be available to your 
        PHP scripts as arrays but separate cookies are stored on the users 
        system.  Consider <function>explode</function> or
        <function>serialize</function> to set one cookie with multiple names 
        and values.
       </simpara>
      </listitem>
     </itemizedlist>
    </para>
    <simpara>
     In PHP 3, multiple calls to <function>setcookie</function> in the same
     script will be performed in reverse order. If you are trying to
     delete one cookie before inserting another you should put the
     insert before the delete. As of PHP 4, multiple calls to
     <function>setcookie</function> are performed in the order called.
    </simpara>
    <para>
     Some examples follow how to send cookies:
     <example>
      <title><function>setcookie</function> send example</title>
      <programlisting role="php">
<![CDATA[
<?php
$value = 'something from somewhere';

setcookie("TestCookie", $value);
setcookie("TestCookie", $value, time()+3600);  /* expire in 1 hour */
setcookie("TestCookie", $value, time()+3600, "/~rasmus/", ".example.com", 1);
?>
]]>
      </programlisting>
     </example>
    </para>
    <para>
     Note that the value portion of the cookie will automatically be
     urlencoded when you send the cookie, and when it is received, it
     is automatically decoded and assigned to a variable by the same
     name as the cookie name. If you don't want this, you can use
     <function>setrawcookie</function> instead if you are using PHP 5. To see
     the contents of our test cookie in a script, simply use one of the
     following examples:
    </para>
    <para>
     <informalexample>
      <programlisting role="php">
<![CDATA[
<?php
// Print an individual cookie
echo $_COOKIE["TestCookie"];
echo $HTTP_COOKIE_VARS["TestCookie"];

// Another way to debug/test is to view all cookies
print_r($_COOKIE);
?>
]]>
      </programlisting>
     </informalexample>
    </para>
    <para>
     When deleting a cookie you should assure that the expiration date
     is in the past, to trigger the removal mechanism in your browser.
     Examples follow how to delete cookies sent in previous example:
    </para>
    <para>
     <example>
      <title><function>setcookie</function> delete example</title>
      <programlisting role="php">
<![CDATA[
<?php
// set the expiration date to one hour ago
setcookie ("TestCookie", "", time() - 3600);
setcookie ("TestCookie", "", time() - 3600, "/~rasmus/", ".example.com", 1);
?>
]]>
      </programlisting>
     </example>
    </para>
    <para>
     You may also set array cookies by using array notation in the
     cookie name. This has the effect of setting as many cookies as
     you have array elements, but when the cookie is received by your
     script, the values are all placed in an array with the cookie's
     name:
    </para>
    <para>
     <example>
      <title><function>setcookie</function> and arrays</title>
      <programlisting role="php">
<![CDATA[
<?php
// set the cookies
setcookie("cookie[three]", "cookiethree");
setcookie("cookie[two]", "cookietwo");
setcookie("cookie[one]", "cookieone");

// after the page reloads, print them out
if (isset($_COOKIE['cookie'])) {
    foreach ($_COOKIE['cookie'] as $name => $value) {
        echo "$name : $value <br />\n";
    }
}
?>
]]>
      </programlisting>
      <para>
       which prints
      </para>
      <screen>
<![CDATA[
three : cookiethree
two : cookietwo
one : cookieone
]]>
      </screen>
     </example>
    </para>
    <note>
     <para>
      The following RFC's may also be useful:
      <ulink url="&url.rfc;2109">RFC 2109</ulink> and 
      <ulink url="&url.rfc;2965">RFC 2695</ulink>
     </para>
     <para>
      You may notice the <parameter>expire</parameter> parameter takes on a
      Unix timestamp, as opposed to the date format <literal>Wdy, DD-Mon-YYYY
      HH:MM:SS GMT</literal>, this is because PHP does this conversion
      internally.
     </para>
     <para>
      <parameter>expire</parameter> is compared to the client's time which can
      differ from server's time.
     </para>
    </note>
    <note>
     <simpara>
      Microsoft Internet Explorer 4 with Service Pack 1 applied does
      not correctly deal with cookies that have their path parameter
      set.
     </simpara>
     <simpara>
      Netscape Communicator 4.05 and Microsoft Internet Explorer 3.x
      appear to handle cookies incorrectly when the path and time
      are not set.
     </simpara>
    </note>
    <para>
     See also <function>header</function>, <function>setrawcookie</function>
     and the <link linkend="features.cookies">cookies section</link>.
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->