|
użytkowników online: 49
|
OPINIE UŻYTKOWNIKÓW
|
Nie jestem webmasterem, ale i na mnie zrobiła wrażenie szybkość reakcji Darka na mój problem. Jego kompetencja i przede wszystkim zupełnie niemodna w dzisiejszych skomercjalizowanych czasach - zwykła ludzka życzliwość dla innego człowieka. Tacy ludzie to dziś gatunek niemal wymarły...
Leszek
Wojskowy Instytut Medyczny
|
|
PODRĘCZNIK PHP 5.x, 4.x, 3.x - częściowo spolszczony / źródło: www.php.net
[Spis]
[A]
[B]
[C]
[D]
[E]
[F]
[G]
[H]
[I]
[J]
[K]
[L]
[M]
[N]
[O]
[P]
[Q]
[R]
[S]
[T]
[U]
[V]
[X]
[W]
[Z]
gmp_clrbit (PHP 4 >= 4.0.4, PHP 5) gmp_clrbit -- Clear bit Descriptionvoid gmp_clrbit ( resource &a, int index )
Clears (sets to 0) bit index in
a. The index starts at 0.
Notatka:
Unlike most of the other GMP functions, gmp_clrbit()
must be called with a GMP resource that already exists (using
gmp_init() for example). One will not be
automatically created.
Przykład 1. gmp_clrbit() example |
<?php
$a = gmp_init("0xff");
gmp_clrbit($a, 0); echo gmp_strval($a) . "\n";
?>
|
The printout of the above program will be:
|
See also gmp_setbit().
User Contributed NotesThere are no user contributed notes for this page
|