PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

gmp_sqrt> <gmp_setbit
Last updated: Fri, 03 Oct 2008

view this page in

gmp_sign

(PHP 4 >= 4.0.4, PHP 5)

gmp_signSign of number

Beschreibung

int gmp_sign ( resource $a )

Checks the sign of a number.

Parameter-Liste

a

Dies kann entweder eine resource für einen GMP Wert sein oder ein numerischer String wenn es möglich ist diesen in einen GMP Wert umzuwandeln.

Rückgabewerte

Returns 1 if a is positive, -1 if a is negative, and 0 if a is zero.

Beispiele

Beispiel #1 gmp_sign() example

<?php
// positive
echo gmp_sign("500") . "\n";

// negative
echo gmp_sign("-500") . "\n";

// zero
echo gmp_sign("0") . "\n";
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

1
-1
0



add a note add a note User Contributed Notes
gmp_sign
There are no user contributed notes for this page.

gmp_sqrt> <gmp_setbit
Last updated: Fri, 03 Oct 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites