芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/libraries.5/vendor/spomky-labs/cbor-php/src/OtherObject/SimpleObject.php
data) { return $this->getAdditionalInformation(); } return Utils::binToInt($this->data); } /** * @return SimpleObject */ public static function create(int $value): self { switch (true) { case $value < 24: return new self($value, null); case $value < 256: return new self(24, chr($value)); default: throw new InvalidArgumentException('The value is not a valid simple value'); } } }