is_real()函數是PHP中的內置函數,用於檢查給定值是否為實數。
用法:
bool is_real( mixed $var )
參數:該函數接受上麵提到並在下麵描述的一個參數:
- $var:它包含需要檢查的變量的值。
返回值:如果變量的給定值為實數,則返回TRUE,否則返回FALSE。
程序1:
<?php
// PHP code to demonstrate
// the is_real() function
function square($num) {
return (is_real($num));
}
var_dump(square(9.09));
var_dump(square(FALSE));
var_dump(square(14));
var_dump(square(56.30));
?>
輸出:
bool(true) bool(false) bool(false) bool(true)
程序2:
<?php
// PHP program to demonstrate the
// is_real() function
$variable_name1 = 67.099;
$variable_name2 = 32;
$variable_name3 = "abc";
$variable_name4 = FALSE;
// Check given variable is real number or not
if (is_real($variable_name1))
echo "$variable_name1 is a real value. \n";
else
echo "$variable_name1 is not a real value. \n";
// Check given variable is real number or not
if (is_float($variable_name2))
echo "$variable_name2 is a real value. \n";
else
echo "$variable_name2 is not a real value. \n";
// Check given variable is real number or not
if (is_float($variable_name3))
echo "$variable_name3 is a real value. \n";
else
echo "$variable_name3 is not a real value. \n";
// Check given variable is real number or not
if (is_float($variable_name4))
echo "FALSE is a real value. \n";
else
echo "FALSE is not a real value. \n";
?>
輸出:
67.099 is a real value. 32 is not a real value. abc is not a real value. FALSE is not a real value.
參考: https://www.php.net/manual/en/function.is-real.php
相關用法
- p5.js value()用法及代碼示例
- PHP Ds\Set contains()用法及代碼示例
- PHP abs()用法及代碼示例
- PHP Ds\Map first()用法及代碼示例
- PHP sin( )用法及代碼示例
- d3.js d3.max()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP cos( )用法及代碼示例
- p5.js str()用法及代碼示例
- PHP each()用法及代碼示例
- p5.js int()用法及代碼示例
注:本文由純淨天空篩選整理自AshokJaiswal大神的英文原創作品 PHP | is_real() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。