From a790488fa1334a01a21625df419cee9f3aa9c0b3 Mon Sep 17 00:00:00 2001 From: Brett Bieber Date: Thu, 22 Apr 2010 21:50:53 +0000 Subject: [PATCH] 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 --- reference/var/ini.xml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/reference/var/ini.xml b/reference/var/ini.xml index de621bb7f2..983fed5e60 100644 --- a/reference/var/ini.xml +++ b/reference/var/ini.xml @@ -39,12 +39,10 @@ - The unserialize 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 unserialize + 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. See also unserialize and Autoloading Objects.