English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
La fonction is_nan() vérifie les valeurs 'non numériques'. Si num n'est pas un nombre, elle retourne TRUE, sinon elle retourne FALSE.
is_nan(num)
num-Valeur à vérifier
Si num n'est pas un nombre, la fonction is_nan() retourne TRUE, sinon elle retourne FALSE.
<?php echo is_nan(10) ?>
Laissez-nous voir un autre exemple-
<?php echo is_nan(acos(1)); ?>