Pyh.conf’25: a new PHP conference for the Russian-speaking community

Voting

: nine minus zero?
(Example: nine)

The Note You're Voting On

strazds at gmail dot com
16 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