PHPDoc for wp_clone. Props filosofo. fixes #8263

git-svn-id: https://develop.svn.wordpress.org/trunk@9744 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-11-17 22:02:32 +00:00
parent bde6d0c67e
commit d936afccf9

View File

@ -2881,8 +2881,18 @@ function wp_suspend_cache_invalidation($suspend = true) {
return $current_suspend;
}
/**
* Copy an object.
*
* Returns a cloned copy of an object.
*
* @since 2.7.0
*
* @param object $object The object to clone
* @return object The cloned object
*/
function wp_clone($object) {
return version_compare(phpversion(), '5.0') < 0 ? $object : clone($object);
return version_compare(phpversion(), '5.0') < 0 ? $object : clone($object);
}