diff --git a/reference/strings/functions/str-ireplace.xml b/reference/strings/functions/str-ireplace.xml index 2c78d568e1..1fbe34e7ec 100644 --- a/reference/strings/functions/str-ireplace.xml +++ b/reference/strings/functions/str-ireplace.xml @@ -1,5 +1,5 @@ - + @@ -61,9 +61,10 @@ $bodytag = str_ireplace("%body%", "black", ""); - As of PHP 5.0 the number of matched and replaced - needles will be returned in + As of PHP 5.0.0 the number of matched and replaced + needles will be returned in count which is passed by reference. + Prior to PHP 5.0.0 this parameter is not available. diff --git a/reference/strings/functions/str-replace.xml b/reference/strings/functions/str-replace.xml index 4f611f84d6..6ce8e5298f 100644 --- a/reference/strings/functions/str-replace.xml +++ b/reference/strings/functions/str-replace.xml @@ -1,5 +1,5 @@ - + @@ -83,9 +83,10 @@ $bodytag = str_replace("%body%", "black", ""); - As of PHP 5.0 the number of matched and replaced - needles will be returned in + As of PHP 5.0.0 the number of matched and replaced + needles will be returned in count which is passed by reference. + Prior to PHP 5.0.0 this parameter is not available.