Dans :
Fonctions PHP
Concepts PHP
Fonctions MySQL
Fonctions HTML
Forum PHP/MySQL
Cours PHP/MySQL
Scripts PHP/MySQL
gmp_and calcule le ET logique de a et b .
<?php$and1 = gmp_and("0xfffffffff4", "0x4");$and2 = gmp_and("0xfffffffff4", "0x8");echo gmp_strval($and1) . "\n";echo gmp_strval($and2) . "\n";?>