diff --git a/reference/strings/functions/implode.xml b/reference/strings/functions/implode.xml index fd3e73c757..0c30c936fe 100644 --- a/reference/strings/functions/implode.xml +++ b/reference/strings/functions/implode.xml @@ -1,5 +1,5 @@ - + @@ -10,21 +10,8 @@ Description stringimplode - - stringglue - - - arraypieces - - - - stringimplode - - arraypieces - - - stringglue - + stringglue + arraypieces Returns a string containing a string representation of all the @@ -57,7 +44,9 @@ print $comma_separated; // lastname,email,phone As of PHP 4.3.0, the glue parameter of implode is - optional and defaults to the empty string(''). + optional and defaults to the empty string(''). This is not the preferred + usage of implode. We recommend to always use two + parameters for compatibility with older versions.