App\Libraries\Utils::toSpaceCase PHP 메소드

toSpaceCase() 공개 정적인 메소드

public static toSpaceCase ( $string )
    public static function toSpaceCase($string)
    {
        return preg_replace('/([a-z])([A-Z])/s', '$1 $2', $string);
    }