linkedin behance copy arrow-up

ParseError


(PHP 7, PHP 8)

Introduction

ParseError est émit quand une erreur se produit lors de l'analyse de code PHP, comme quand eval() est appelé.

Note:
ParseError étend CompileError à partir de PHP 7.3.0. Auparavant, elle étendait Error.
Synopsis de la classe


class ParseError extends CompileError {
/* Propriétés héritées */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
/* Méthodes héritées */
public Error::__construct(string $message = "", int $code = 0, ?Throwable $previous = null)
final public Error::getMessage(): string
final public Error::getPrevious(): ?Throwable
final public Error::getCode(): int
final public Error::getFile(): string
final public Error::getLine(): int
final public Error::getTrace(): array
final public Error::getTraceAsString(): string
public Error::__toString(): string
private Error::__clone(): void
}

© 2010-2022 Quazerty.