PHP 8.6.0 Beta 3 is available for testing

The GMP class

(PHP 5 >= 5.6.0, PHP 7, PHP 8)

Einführung

A GMP number. These objects support overloaded arithmetic, bitwise and comparison operators.

Hinweis:

No object-oriented interface is provided to manipulate GMP objects. Please use the procedural GMP API.

Klassenbeschreibung

final class GMP {
/* Methoden */
public function __construct(int|string $num = 0, int $base = 0)
public function __serialize(): array
public function __unserialize(array $data): void
}

Changelog

Version Beschreibung
8.4.0 GMP is now marked final
8.4.0 A GMP object can now be cast to bool; an object representing 0 is cast to false, and any other value to true. Previously, casting to bool emitted an E_RECOVERABLE_ERROR.

Inhaltsverzeichnis

add a note

User Contributed Notes

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