diff --git a/reference/strings/functions/explode.xml b/reference/strings/functions/explode.xml index 573eda86dc..16bc2eb70b 100644 --- a/reference/strings/functions/explode.xml +++ b/reference/strings/functions/explode.xml @@ -72,12 +72,17 @@ &reftitle.returnvalues; - If delimiter is an empty string (""), + Returns an array of strings + created by splitting the string parameter on + boundaries formed by the delimiter. + + + If delimiter is an empty string (""), explode will return &false;. If delimiter contains a value that is not contained in string and a negative - limit is used, then an empty array will be - returned. For any other limit, an array containing + limit is used, then an empty arraywill be + returned, otherwise an array containing string will be returned.