Skip to content

Commit 861209f

Browse files
committed
Add test case to Georgian word to mb_ucfirst
1 parent 55d7de5 commit 861209f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ext/mbstring/tests/mb_ucfirst_lcfirst.phpt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ echo "== mb_ucfirst ==\n";
1212
var_dump(mb_ucfirst("ab"));
1313
var_dump(mb_ucfirst("ABS"));
1414
var_dump(mb_ucfirst("đắt quá!"));
15+
var_dump(mb_ucfirst("აბგ"));
16+
var_dump(mb_ucfirst("lj"));
1517
echo "== mb_lcfirst ==\n";
1618
var_dump(mb_lcfirst("ABS"));
1719
var_dump(mb_lcfirst("Xin chào"));
@@ -25,6 +27,8 @@ string(0) ""
2527
string(6) "Ab"
2628
string(9) "ABS"
2729
string(12) "Đắt quá!"
30+
string(9) "აბგ"
31+
string(2) "Lj"
2832
== mb_lcfirst ==
2933
string(9) "aBS"
3034
string(9) "xin chào"

0 commit comments

Comments
 (0)