small sanitizing function

PHP Code: 

    
function sanitize($str)
    {
        return 
strtolower(strip_tags(trim(($str))));
    }