在循环中使用(string)强转,然后查找字符串即可。
$min = 1;$max = 9999;for($i=$min; $i<=$max; $i++){ if(strpos((string)$i, '4') === false) { echo $i; echo ""; } }?>