summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/substr_count_error.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/strings/substr_count_error.phpt')
-rw-r--r--ext/standard/tests/strings/substr_count_error.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/tests/strings/substr_count_error.phpt b/ext/standard/tests/strings/substr_count_error.phpt
index 881da391e6..b4cf3d05df 100644
--- a/ext/standard/tests/strings/substr_count_error.phpt
+++ b/ext/standard/tests/strings/substr_count_error.phpt
@@ -11,14 +11,14 @@ var_dump( substr_count() );
/* more than expected no. of args */
var_dump( substr_count($str, "t", 0, 15, 30) );
-
+
/* offset before start */
var_dump(substr_count($str, "t", -20));
/* offset > size of the string */
var_dump(substr_count($str, "t", 25));
-/* Using offset and length to go beyond the size of the string:
+/* Using offset and length to go beyond the size of the string:
Warning message expected, as length+offset > length of string */
var_dump( substr_count($str, "i", 5, 7) );