function test($str){ if (preg_match("/^[\x81-\xfe][\x40-\xfe]?/",$str)) { return "首字母有中文"; } return "首字母没中文"; } echo test("中1231213");//首字母有中文 echo test("123中");//首字母没中文