PHP 8.5.0 Beta 3 available for testing

RuntimeException ใ‚ฏใƒฉใ‚น

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

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

ๅฎŸ่กŒๆ™‚ใซใ ใ‘็™บ็”Ÿใ™ใ‚‹ใ‚ˆใ†ใชใ‚จใƒฉใƒผใฎ้š›ใซใ‚นใƒญใƒผใ•ใ‚Œใพใ™ใ€‚

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

class RuntimeException 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 1 note

To Top