PHP 8.5.0 Beta 3 available for testing

RequestParseBodyException

(PHP 8 >= 8.4.0)

ใฏใ˜ใ‚ใซ

RequestParseBodyException ใฏใ€ request_parse_body() ๅ†…ใงใƒชใ‚ฏใ‚จใ‚นใƒˆใƒœใƒ‡ใ‚ฃใŒ็„กๅŠนใชๅ ดๅˆใซใ‚นใƒญใƒผใ•ใ‚Œใพใ™ใ€‚ ใ“ใ‚Œใฏใ€ Content-Type ใƒ˜ใƒƒใƒ€ใƒผใซๅŸบใฅใ„ใฆๅˆคๆ–ญใ•ใ‚Œใพใ™ใ€‚

ใ‚ฏใƒฉใ‚นๆฆ‚่ฆ

class RequestParseBodyException extends Exception {
/* ็ถ™ๆ‰ฟใ—ใŸใƒ—ใƒญใƒ‘ใƒ†ใ‚ฃ */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
/* ็ถ™ๆ‰ฟใ—ใŸใƒกใ‚ฝใƒƒใƒ‰ */
public Exception::__construct(string $message = "", int $code = 0, ?Throwable $previous = null)
final public Exception::getCode(): int
final public Exception::getFile(): string
final public Exception::getLine(): int
final public Exception::getTrace(): array
}
๏ผ‹add a note

User Contributed Notes

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