From d6f393442baa05d31a005a940aacf5185d8cd563 Mon Sep 17 00:00:00 2001 From: Daniel Egeberg Date: Thu, 1 Apr 2010 20:33:18 +0000 Subject: [PATCH] Fixed #51453 (Mentioning NULL as special value for replacement in array_splice()) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@297304 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/array/functions/array-splice.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/array/functions/array-splice.xml b/reference/array/functions/array-splice.xml index 5972915627..b4c2df1bb3 100644 --- a/reference/array/functions/array-splice.xml +++ b/reference/array/functions/array-splice.xml @@ -28,7 +28,7 @@ If replacement is not an array, it will be typecast to one (i.e. (array) $parameter). This may result in unexpected - behavior when using an object replacement. + behavior when using an object or &null; replacement. @@ -91,7 +91,7 @@ If replacement is just one element it is not necessary to put array() - around it, unless the element is an array itself. + around it, unless the element is an array itself, an object or &null;.