php判断某字符串是否不以数字或其他特殊字符开头

if(preg_match("/^[^\d-.,:]/",$addr)){
        echo $addr.'不是数字或其他特殊字符开头';
}