Convert Database/Variable Name to Human Title
Copy this code and paste it in your HTML
<?
class inflector extends inflector_Core {
public static function titlize
($rawTitle) { } else {
return ucwords(self::humanize($rawTitle));
}
}
}
echo inflector
::titlize("news_items");
// News Items echo inflector
::titlize("id");
// ID ?>
Report this snippet