May 30, 2017

PHP function humanize

function humanize($str){
return ucwords(str_replace(array('_', '-'), ' ', $str));
}

Last updated: May 30, 2017