mb_ucfirst.php 104 B

1234567
  1. <?php
  2. function mb_ucfirst($str) {
  3. return(mb_strtoupper(mb_substr($str,0,1)).mb_substr($str,1));
  4. }
  5. ?>