= 4.0.4, PHP 5, PHP 7, PHP 8)gmp_abs — Absolute value說明gmp_abs(GMP|int|string $num): GMPGet the absolute value of a number. 參數(shù)numGMP 對象">

gmp_abs

(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)

gmp_absAbsolute value

說明

gmp_abs(GMP|int|string $num): GMP

Get the absolute value of a number.

參數(shù)

num

GMP 對象或 int ,或數(shù)字string

返回值

Returns the absolute value of num, as a GMP number.

范例

示例 #1 gmp_abs() example

<?php
$abs1 
gmp_abs("274982683358");
$abs2 gmp_abs("-274982683358");

echo 
gmp_strval($abs1) . "\n";
echo 
gmp_strval($abs2) . "\n";
?>

以上例程會輸出:

274982683358
274982683358