| Server IP : 121.121.20.254 / Your IP : 216.73.216.142 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/PHP83/stubs/ |
Upload File : |
<?php
/**
* stub class representing AMQPDecimal from pecl-amqp
*
* @readonly
*/
final /* readonly */ class AMQPDecimal implements AMQPValue
{
/**
* @var int
*/
public const EXPONENT_MIN = 0;
/**
* @var int
*/
public const EXPONENT_MAX = 255;
/**
* @var int
*/
public const SIGNIFICAND_MIN = 0;
/**
* @var int
*/
public const SIGNIFICAND_MAX = 4294967295;
private int $exponent;
private int $significand;
/**
* @throws AMQPValueException
*/
public function __construct(int $exponent, int $significand)
{
}
public function getExponent(): int
{
}
public function getSignificand(): int
{
}
public function toAmqpValue()
{
}
}