summaryrefslogtreecommitdiff
path: root/ext/mbstring/tests/mb_ereg_match_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mbstring/tests/mb_ereg_match_basic.phpt')
-rw-r--r--ext/mbstring/tests/mb_ereg_match_basic.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mbstring/tests/mb_ereg_match_basic.phpt b/ext/mbstring/tests/mb_ereg_match_basic.phpt
index f730a637d3..a67acc3c59 100644
--- a/ext/mbstring/tests/mb_ereg_match_basic.phpt
+++ b/ext/mbstring/tests/mb_ereg_match_basic.phpt
@@ -8,7 +8,7 @@ function_exists('mb_ereg_match') or die("skip mb_ereg_match() is not available i
--FILE--
<?php
/* Prototype : bool mb_ereg_match(string $pattern, string $string [,string $option])
- * Description: Regular expression match for multibyte string
+ * Description: Regular expression match for multibyte string
* Source code: ext/mbstring/php_mbregex.c
*/
@@ -27,7 +27,7 @@ $string_mb = base64_decode('5pel5pys6Kqe44OG44Kt44K544OI44Gn44GZ44CCMDEyMzTvvJXv
echo "\n-- ASCII string 1 --\n";
var_dump(mb_ereg_match('.*def', $string_ascii));
-//will return false as pattern would match half way through string
+//will return false as pattern would match half way through string
echo "\n-- ASCII string 2 --\n";
var_dump(mb_ereg_match('def', $string_ascii));