Clean up unserialize_callback_func definition: Fix spelling & grammar, remove obvious information.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@298346 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Brett Bieber 2010-04-22 21:50:53 +00:00
parent a9adbb764e
commit a790488fa1

View file

@ -39,12 +39,10 @@
</term>
<listitem>
<para>
The <function>unserialize</function> callback function will called
(with the undefined class' name as parameter), if the unserializer
finds an undefined class which should be instantiated. A warning
appears if the specified function is not defined, or if the function
doesn't include/implement the missing class. So only set this entry,
if you really want to implement such a callback-function.
The callback specified is called when <function>unserialize</function>
attempts to use an undefined class. A warning appears if the specified
callback function is not defined, or if the callback function fails to
define the missing class.
</para>
<para>
See also <function>unserialize</function> and <link linkend="language.oop5.autoload">Autoloading Objects</link>.