From 5cece6ee121522644972edb86bbcf554bed2d7ff Mon Sep 17 00:00:00 2001 From: Zak Greant Date: Mon, 24 Sep 2001 21:34:39 +0000 Subject: [PATCH] Specified that the third parameter for array_search ('strict') is optional. Noted in both the func. prototype and the description. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@58207 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/array.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/array.xml b/functions/array.xml index 7851a12655..355a4e2c21 100644 --- a/functions/array.xml +++ b/functions/array.xml @@ -1,5 +1,5 @@ - + Array Functions Arrays @@ -2332,7 +2332,7 @@ if (in_array(1.13, $a, TRUE)) mixed array_search mixed needle array haystack - bool strict + bool strict @@ -2341,7 +2341,7 @@ if (in_array(1.13, $a, TRUE)) the array, &false; otherwise. - If the third parameter strict is set to + If the optional third parameter strict is set to &true; then the array_search will also check the types of the needle in the haystack.