We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 812f227 commit dd95144Copy full SHA for dd95144
README.md
@@ -105,8 +105,12 @@ PHP's standard string functions.
105
106
```php
107
// Standard library
108
-strtoupper('fòôbàř'); // 'FòôBàř'
109
-strlen('fòôbàř'); // 10
+strtoupper('fòôbàř'); // 'FòôBàř'
+strlen('fòôbàř'); // 10
110
+
111
+// mbstring
112
+mb_strtoupper('fòôbàř'); // 'FÒÔBÀŘ'
113
+mb_strlen('fòôbàř'); // '6'
114
115
// Stringy
116
s('fòôbàř')->toUpperCase(); // 'FÒÔBÀŘ'
0 commit comments