mirror of
https://github.com/restoreddev/phpapprentice.git
synced 2025-08-04 05:47:58 +02:00
Merge pull request #27 from NiklasBr/patch-1
Multibyte-aware string function
This commit is contained in:
@@ -37,7 +37,7 @@ You can also return a value from a function. You can only
|
||||
return a single value from a function.
|
||||
```php
|
||||
function capitalize($value) {
|
||||
return strtoupper($value);
|
||||
return mb_strtoupper($value);
|
||||
}
|
||||
```
|
||||
|
||||
|
Reference in New Issue
Block a user