Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: php验证整数
我通常如何验证用户输入是整数?我的意思是我通过 $_GET 收到一个变量,这必须是一个整数。
你可以使用:
preg_match('/^[0-9]+$/', $_GET['variable_name']);
如果您打算仅使用整数而不是其他类型(例如浮点数),则应该可能使用is_numeric()函数或is_int()函数。