(PHP 4 >= 4.0.4, PHP 5, PHP 7)
gmp_sign — Sign of number
$a
Checks the sign of a number.
a
PHP 5.5 이전에서 GMP 수 resource나, PHP 5.6 이후에서 GMP 객체, 또는 수로 변환할 수 있는 문자열일 수 있습니다.
Returns 1 if a is positive, -1 if a is negative, and 0 if a is zero.
Example #1 gmp_sign() example
<?php// positiveecho gmp_sign("500") . "\n";// negativeecho gmp_sign("-500") . "\n";// zeroecho gmp_sign("0") . "\n";?>
위 예제의 출력:
1 -1 0