我希望下面的代码第一次返回“Int”,第二次返回“Not int”。不幸的是,它两次返回“Not int”。
我怎样才能解决这个问题?
<?php
$test1='1';
if(is_int($test1)){
echo "Int";
}else{
echo "Not int";
}
echo "\n";
$test2='1a';
if(is_int($test2)){
echo "Int";
}else{
echo "Not int";
}
?>