PHP floor() 函數是數學函數,用於求分數。它返回下一個最小的整數值(作為浮點數)。
用法:
float floor ( float $value );
參數 | 描述 | 必需/可選 |
---|---|---|
number | 要向下舍入的數值 | Required |
例子1
<?php
$nos=3.3;
echo "Your number is:".$nos;
echo "<br>"."By using 'floor()' function your value is:".(floor($nos)); // 3
?>
輸出:
Your number is:3.3 By using 'floor()' function your value is:3
例子2
<?php
$nos=7.333;
echo "Your number is:".$nos;
echo "<br>"."By using 'floor()' function your value is:".(floor($nos));
?>
輸出:
Your number is:7.333 By using 'floor()' function your value is:7
例子3
<?php
$nos=-4.8;
echo "Your number is:".$nos;
echo "<br>"."By using 'floor()' function your value is:".(floor($nos));
?>
輸出:
Your number is:-4.8 By using 'floor()' function your value is:-5
示例 4
<?php
$nos=(-0.60);
echo "Your number is:".$nos;
echo "<br>"."By using 'floor()' function your value is:".(floor($nos));
?>
輸出:
Your number is:-0.6 By using 'floor()' function your value is:-1
相關用法
- PHP floatval()用法及代碼示例
- PHP fwrite( )用法及代碼示例
- PHP ftruncate( )用法及代碼示例
- PHP ftp_rawlist()用法及代碼示例
- PHP ftp_close()用法及代碼示例
- PHP fstat( )用法及代碼示例
- PHP ftp_set_option()用法及代碼示例
- PHP filter_id()用法及代碼示例
- PHP ftell( )用法及代碼示例
- PHP fputs( )用法及代碼示例
- PHP function_exists()用法及代碼示例
- PHP ftp_size()用法及代碼示例
- PHP filter_input()用法及代碼示例
- PHP filter_var()用法及代碼示例
- PHP frenchtojd()用法及代碼示例
- PHP ftp_login()用法及代碼示例
- PHP file_get_contents()用法及代碼示例
- PHP ftp_put()用法及代碼示例
- PHP fgetss( )用法及代碼示例
- PHP fseek( )用法及代碼示例
注:本文由純淨天空篩選整理自 PHP floor() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。