gmp_perfect_square

(PHP 4 >= 4.0.4, PHP 5)

gmp_perfect_squarePerfect square check

說明

bool gmp_perfect_square ( GMP $a )

Check if a number is a perfect square.

參數

a

The number being checked as a perfect square.

可以是一個 GMP 數據 resouce,或一個可以轉換為數值的字串。

回傳值

Returns TRUE if a is a perfect square, FALSE otherwise.

範例

Example #1 gmp_perfect_square() example

<?php
// 3 * 3, perfect square
var_dump(gmp_perfect_square("9"));

// not a perfect square
var_dump(gmp_perfect_square("7"));

// 1234567890 * 1234567890, perfect square
var_dump(gmp_perfect_square("1524157875019052100"));
?>

上例將輸出:

bool(true)
bool(false)
bool(true)

參見

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top