PHP Math 函数
is_nan() 判断是否为合法数值。
is_nan(x)
如果 x 为“非数值”,例如 acos(1.01) 的结果,则返回 true。
<?php echo is_nan(200); echo is_nan(acos(1.01)); ?>
输出:
1
Search: