判断是否为数字 使用is_numeric函数,可以判断数字或者数字字符串 $variables = [ 0, 36, 3.6, .36, '36', 'a36', 044, //8进制 0x24, //16进制 1337e0 ]; 结果 int(0) is number : Y // 0 int(36) is number : Y // 36 float(3.6) is number : Y // 3.6 float(0.36) is number : Y // .36 string(2) "3…