str::upper($str)

An UTF-8 safe version of strotoupper()

  • $str (string)
  • return (string)

Example

<?php
$string = 'kirby';
echo str::upper($string);
// 'KIRBY'