<?php function ucfirst2($str) { if ( $str[0] > '`' && $str[0] < '{' ) $str[0] = chr(ord($str[0]) - 32); return $str; } echo ucfirst2('Toto');
You have javascript disabled. You will not be able to edit any code.