Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Convert string to underscore_name (See related posts)

Converts "My House" to "my_house".
Converts " Peter's nice car " to "peters_nice_car".
Converts "_88" to "88"

function string_to_underscore_name($string)
{
    $string = preg_replace('/[\'"]/', '', $string);
    $string = preg_replace('/[^a-zA-Z0-9]+/', '_', $string);
    $string = trim($string, '_');
    $string = strtolower($string);
    
    return $string;
}

You need to create an account or log in to post comments to this site.


Click here to browse all 4858 code snippets

Related Posts