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

About this user

Algimantas Stancelis

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Convert string to underscore_name

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;
}

Check whether string begins with given string

Checks whether $string begins with $search

function string_begins_with($string, $search)
{
    return (strncmp($string, $search, strlen($search)) == 0);
}
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS