php判断是否为正整数

$num=3;

if(is_int($num+0)){

    echo 'right';

}else{

    echo 'false';

}


+0是必要的