Esempio n. 1
0
function make_english($f)
{
    $tmp = str_replace("_", " ", $f);
    $tmp = substr($tmp, 0, strlen($tmp) - 5);
    $tmp = capitalize_it($tmp);
    return $tmp;
}
Esempio n. 2
0
function make_english($f)
{
    $tmp = str_replace("_", " ", $f);
    $tmp = substr($tmp, 0, strlen($tmp) - 5);
    $tmp = capitalize_it($tmp);
    // capitalize first char
    // capitalize bluej?
    return $tmp;
}