git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@275411 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Richard Quadling 2009-02-09 12:36:00 +00:00
parent 27e9dfbd01
commit 0f4fa3b6a7
6 changed files with 13 additions and 13 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<refentry xml:id="arrayaccess.offsetexists" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@ -24,7 +24,7 @@
<para>
When using <function>empty</function> <function>ArrayAccess::offsetGet</function> will
be called and checked if empty only if <function>ArrayAccess::offsetExists</function>
returns <type>true</type>.
returns &true;.
</para>
</note>
</refsect1>

View file

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<refentry xml:id="iterator.current" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>Iterator::current</refname>
<refpurpose>Return the current element.</refpurpose>
<refpurpose>Return the current element</refpurpose>
</refnamediv>
<refsect1 role="description">

View file

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<refentry xml:id="iterator.key" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>Iterator::key</refname>
<refpurpose>Return the key of the current element.</refpurpose>
<refpurpose>Return the key of the current element</refpurpose>
</refnamediv>
<refsect1 role="description">

View file

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<refentry xml:id="iterator.rewind" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>Iterator::rewind</refname>
<refpurpose>Rewind the Iterator to the first element.</refpurpose>
<refpurpose>Rewind the Iterator to the first element</refpurpose>
</refnamediv>
<refsect1 role="description">

View file

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<refentry xml:id="iterator.valid" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>Iterator::valid</refname>
<refpurpose>Checks if current position is valid.</refpurpose>
<refpurpose>Checks if current position is valid</refpurpose>
</refnamediv>
<refsect1 role="description">

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<phpdoc:classref xml:id="class.serializable" xmlns:phpdoc="http://php.net/ns/phpdoc" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
@ -18,12 +18,12 @@
<para>
Classes that implement this interface no longer support
<link linkend="language.oop5.magic.sleep">__sleep()</link> and
<link linkend="language.oop5.magic.sleep">__wakeup()</link>. The method serialized is
<link linkend="language.oop5.magic.sleep">__wakeup()</link>. The method serialize is
called whenever an instance needs to be serialized. This does not invoke __destruct()
or has any other side effect unless programmed inside the method. When the data is
unserialized the class is known and the appropriate unserialize() method is called as
a constructor instead of calling __construct(). If you need to execute the standard
constructor you may do so in the method
constructor you may do so in the method.
</para>
</section>
<!-- }}} -->