运行 ❯
获取您
自己的
PHP
×
更改方向
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <?php // Variable to check $int = 0; if (filter_var($int, FILTER_VALIDATE_INT)!== false) { echo("Variable is an integer"); } else { echo("Variable is not an integer"); } ?> </body> </html>
变量是整数