update page now

Voting

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

The Note You're Voting On

strazds at gmail dot com
17 years ago
ucwords for UTF-8 strings:

<?php
function mb_ucwords($str) {
    $str = mb_convert_case($str, MB_CASE_TITLE, "UTF-8");
    return ($str);
}
?>

<< Back to user notes page

To Top