Matthias\SymfonyConsoleForm\Form\FormUtil::humanize PHP 메소드

humanize() 개인적인 정적인 메소드

Copied from Symfony\Component\Form method humanize.
private static humanize ( $text ) : string
$text
리턴 string
    private static function humanize($text)
    {
        return ucfirst(trim(strtolower(preg_replace(array('/([A-Z])/', '/[_\\s]+/'), array('_$1', ' '), $text))));
    }