PHP is_nan() 函数
PHP 教程
· 2019-01-26 23:43:55
实例
判断一个值是否为非数值:
<?php
echo is_nan(200) . "<br>";
echo is_nan(acos(1.01));
?>
echo is_nan(200) . "<br>";
echo is_nan(acos(1.01));
?>
定义和用法
is_nan() 函数判断一个值是否为非数值。
如果指定的值是非数值,该函数返回 true (1)。否则,它将返回 false/nothing。
语法
is_nan(value);
参数 | 描述 |
---|---|
value | 必需。规定要检查的值。 |
技术细节
返回值: | 如果 value 是非数值,则返回 TRUE。否则,返回 FALSE。 |
---|---|
返回类型: | Boolean |
PHP 版本: | 4.2+ |
点击查看所有 PHP 教程 文章: https://www.codercto.com/courses/l/5.html
Deep Learning
Ian Goodfellow、Yoshua Bengio、Aaron Courville / The MIT Press / 2016-11-11 / USD 72.00
"Written by three experts in the field, Deep Learning is the only comprehensive book on the subject." -- Elon Musk, co-chair of OpenAI; co-founder and CEO of Tesla and SpaceX Deep learning is a for......一起来看看 《Deep Learning》 这本书的介绍吧!