gmp_neg

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

gmp_negNegate number

Descrierea

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

Returns the negative value of a number.

Parametri

num

Un număr GMP sub formă de resource în PHP 5.5 și anterior, un obiect GMP în PHP 5.6 și ultrior, su un șir de caractere numeric atunci când acesta poate fi convertit într-un număr.

Valorile întoarse

Returns -num, as a GMP number.

Exemple

Example #1 gmp_neg() example

<?php
$neg1 
gmp_neg("1");
echo 
gmp_strval($neg1) . "\n";
$neg2 gmp_neg("-1");
echo 
gmp_strval($neg2) . "\n";
?>

Exemplul de mai sus va afișa:

-1
1

add a note add a note

User Contributed Notes

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