str::upper($str)
An UTF-8 safe version of strotoupper()
-
$str (string)
-
return (string)
Example
<?php
$string = 'kirby';
echo str::upper($string);
// 'KIRBY'
An UTF-8 safe version of strotoupper()
<?php
$string = 'kirby';
echo str::upper($string);
// 'KIRBY'