mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-04-04 02:08:55 +00:00
88 lines
2.1 KiB
XML
88 lines
2.1 KiB
XML
![]() |
<?xml version="1.0" encoding="iso-8859-1"?>
|
||
|
<!-- 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>
|
||
|
<simpara>
|
||
|
This function returns &true; on success and
|
||
|
&false; on failure to destroy
|
||
|
the session data.
|
||
|
</simpara>
|
||
|
<para>
|
||
|
<example>
|
||
|
<title>Destroying a session</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_unset();
|
||
|
// Finally, destroy the session.
|
||
|
session_destroy();
|
||
|
|
||
|
?>
|
||
|
]]>
|
||
|
</programlisting>
|
||
|
</example>
|
||
|
</para>
|
||
|
<para>
|
||
|
<example>
|
||
|
<title>Destroying a session with $_SESSION</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();
|
||
|
// Finally, destroy the session.
|
||
|
session_destroy();
|
||
|
|
||
|
?>
|
||
|
]]>
|
||
|
</programlisting>
|
||
|
</example>
|
||
|
</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
|
||
|
-->
|