Voting

: min(zero, seven)?
(Example: nine)

The Note You're Voting On

hrvoj3e at gmail dot com
12 years ago
UTF-8 Title Case that works for me even with hyphens involved!

$str = 'ĐaaČaa-AAAaaa, BBbb';

$str = mb_convert_case($str, MB_CASE_TITLE, "UTF-8");

echo($str): 'Đaačaa-Aaaaaa, Bbbb'

<< Back to user notes page

To Top