mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-26 22:08:55 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@167974 c90b9560-bf6c-de11-be94-00142212c4b1
89 lines
2.5 KiB
XML
89 lines
2.5 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.4 $ -->
|
|
<!-- splitted from ./en/functions/session.xml, last change in rev 1.2 -->
|
|
<refentry id="function.session-destroy">
|
|
<refnamediv>
|
|
<refname>session_destroy</refname>
|
|
<refpurpose>Destroys all data registered to a session</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>bool</type><methodname>session_destroy</methodname>
|
|
<void/>
|
|
</methodsynopsis>
|
|
<simpara>
|
|
<function>session_destroy</function> destroys all of the data
|
|
associated with the current session. It does not unset any of
|
|
the global variables associated with the session, or unset the
|
|
session cookie.
|
|
</simpara>
|
|
<para>
|
|
In order to kill the session altogether, like to log the user out, the
|
|
session id must also be unset. If a cookie is used to propagate the
|
|
session id (default behavior), then the session cookie must be deleted.
|
|
<function>setcookie</function> may be used for that.
|
|
</para>
|
|
<simpara>
|
|
&return.success;
|
|
</simpara>
|
|
<para>
|
|
<example>
|
|
<title>Destroying a session with <varname>$_SESSION</varname></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
// Initialize the session.
|
|
// If you are using session_name("something"), don't forget it now!
|
|
session_start();
|
|
|
|
// Unset all of the session variables.
|
|
$_SESSION = array();
|
|
|
|
// If it's desired to kill the session, also delete the session cookie.
|
|
// Note: This will destroy the session, and not just the session data!
|
|
if (isset($_COOKIE[session_name()])) {
|
|
setcookie(session_name(), '', time()-42000, '/');
|
|
}
|
|
|
|
// Finally, destroy the session.
|
|
session_destroy();
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
<note>
|
|
<para>
|
|
Only use <function>session_unset</function> for older deprecated code
|
|
that does not use <varname>$_SESSION</varname>.
|
|
</para>
|
|
</note>
|
|
<para>
|
|
See also
|
|
<function>unset</function> and
|
|
<function>setcookie</function>.
|
|
</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
|
|
-->
|