我有这样的代码
<?php if
($trx->de_amount2 == '10000' ||$trx->de_amount2 == '15000'||$trx->de_amount2 == '20000'||$trx->de_amount2 == '25000'||$trx->de_amount2 == '30000' ):?>
ok
<?php else:?>
no
<?php endif;?>
我想用一个不像这样的简单代码使数字从5000到100万的倍数
$trx->de_amount2 == '10000' ||$trx->de_amount2 == '15000'
我怎么做?
翻翻过去那场雪