PHP幾個數學計算的內建函式學習整理

來源:互聯網
上載者:User

round
round - 對浮點數進行四捨五入。round 函數文法如下:

round(float,precision)
其中參數 precision 表示小數點後面要保持的精度位元。如果不寫參數 precision,表示四捨五入到整數位,比如:

echo round(3.4); // 3echo round(3.5); // 4echo round(3.6); // 4
如果 precision 為2,表示四捨五入到小數點後2位。樣本如下:

echo round(1.95583, 2); // 1.96
如果參數 precision 為負數,表示四捨五入到小數點前。比如:

echo round(1241757, -3); // 1242000
floor
floor - 捨去法求整。floor 函數文法如下:

floor (value)
floor 函數返回不大於 value 的最大整數,即將 value 的小數部分捨去取整。樣本如下:

echo floor(4); //4
echo floor(4.3); // 4echo floor(9.999); // 9
ceil
ceil - 進一法取整。ceil 函數文法如下:

ceil (value)
ceil 函數返回不小於 value 的最小整數。樣本如下:

echo ceil(4); //4
echo ceil(4.3); // 5echo ceil(9.999); // 10
pow
pow - 求冪。pow 函數的文法如下:

pow (base,exp)
pow 函數返回 base 的 exp 次方的冪。下面的樣本表示求 2 的8 次方,返回結果是256。

echo pow(2, 8); // 256
rand
rand - 產生一個隨機整數。rand 函數文法如下:

rand (min,max)
rand 函數返回一個介於最小值 min 和最大值 max 之間 (包括min, max) 的隨機整數。比如下面樣本返回一個 2 到 6 之間的隨機整數。

echo rand(2,6);
max
max - 返回參數中數值最大的值。

如果 max 函數只有一個參數且為數組,max 返回該數組中最大的值。

max 函數樣本如下:

echo max(1, 3, 5, 6, 7); // 7echo max(array(2, 4, 5)); // 5
min
min - 返回參數中的最小值。

如果 min 函數只有一個參數且為數組,min 返回該數組中最小的值。

min 函數樣本如下:

echo min(1, 3, 5, 6, 7); // 1echo min(array(2, 4, 5)); // 2
decbin
decbin - 十進位轉換為二進位。decbin 函數文法如下:

decbin (number)
decbin 返回一個字串,即返回參數 number 的二進位表示。樣本如下:

echo decbin(12);
DE>decbin(12)DE> 返回的結果是:

1100
bindec
bindec - 二進位轉換成十進位。bindec 函數文法如下:

bindec (binary_string)
bindec 函數將二進位字串 binary_string 轉換成一個十進位整數。樣本如下:

echo bindec('110011'); //51
dechex, hexdec
dechex - 十進位轉換為十六進位。

hexdec - 十六進位轉換為十進位。

dechex, hexdec 函數樣本如下:

echo dechex(47); //2f
echo hexdec('2f'); //47
decoct, octdec
decoct - 十進位轉換為八進位

octdec - 八進位轉換為十進位

decoct,octdec 函數樣本如下:

echo decoct(12); //14
echo octdec('14'); //12

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.