From ca431331de092de6dc5e6eb00158f5f67e24f147 Mon Sep 17 00:00:00 2001 From: Stefan Walk Date: Wed, 21 May 2003 20:13:25 +0000 Subject: [PATCH] the glue parameter is optional as of PHP 4.3 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@128268 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/strings/functions/implode.xml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/reference/strings/functions/implode.xml b/reference/strings/functions/implode.xml index 050f442fd5..d5d89eda40 100644 --- a/reference/strings/functions/implode.xml +++ b/reference/strings/functions/implode.xml @@ -1,5 +1,5 @@ - + @@ -10,7 +10,9 @@ Description stringimplode - stringglue + + stringglue + arraypieces @@ -41,6 +43,12 @@ print $comma_separated; // lastname,email,phone to use the documented order of arguments. + + + As of PHP 4.3.0, the glue parameter of implode is + optional and defaults to the empty string(''). + + See also explode, and split.