Example #1
0
/**
 * Converts a string to "snake_case"
 */
function str_snakecase($str)
{
    return \Phpf\Util\Str::snakeCase($str);
}