FFI\ParserException: Skillnad mellan sidversioner

Från Wiki.linux.se
Hoppa till navigering Hoppa till sök
(Skapade sidan med '=== FFI Parser Exceptions === _(PHP 7 >= 7.4.0, PHP 8)_ ==== Introduktion ==== FFI\ParserException är en slutgiltig klass som ärver från FFI\Exception och används för att hantera specifika undantag som uppstår vid analys av FFI-kod. ==== Klassöversikt ==== final class FFI\ParserException extends FFI\Exception { →‎Ärvda egenskaper: protected string $message = ""; private string $string = ""; protected int $code; protected string $file = "...')
 
Ingen redigeringssammanfattning
 
Rad 1: Rad 1:
=== FFI Parser Exceptions ===
=== [[FFI\ParserException]] ===


_(PHP 7 >= 7.4.0, PHP 8)_
_(PHP 7 >= 7.4.0, PHP 8)_
Rad 9: Rad 9:
==== Klassöversikt ====
==== Klassöversikt ====


final class FFI\ParserException extends FFI\Exception {
<pre>
/* Ärvda egenskaper */
final class FFI\ParserException extends FFI\Exception {
protected string $message = "";
    /* Ärvda egenskaper */
private string $string = "";
    protected string $message = "";
protected int $code;
    private string $string = "";
protected string $file = "";
    protected int $code;
protected int $line;
    protected string $file = "";
private array $trace = [];
    protected int $line;
private ?Throwable $previous = null;
    private array $trace = [];
    private ?Throwable $previous = null;


/* Ärvda metoder */
    /* Ärvda metoder */
public Error::__construct(string $message = "", int $code = 0, ?Throwable $previous = null)
    public Error::__construct(string $message = "", int $code = 0, ?Throwable $previous = null)
final public Error::getMessage(): string
    final public Error::getMessage(): string
final public Error::getPrevious(): ?Throwable
    final public Error::getPrevious(): ?Throwable
final public Error::getCode(): int
    final public Error::getCode(): int
final public Error::getFile(): string
    final public Error::getFile(): string
final public Error::getLine(): int
    final public Error::getLine(): int
final public Error::getTrace(): array
    final public Error::getTrace(): array
final public Error::getTraceAsString(): string
    final public Error::getTraceAsString(): string
public Error::__toString(): string
    public Error::__toString(): string
private Error::__clone(): void
    private Error::__clone(): void
}
}
</pre>
= Sidslut =
= Sidslut =


Rad 43: Rad 45:
https://www.linux.se/kontaka-linux-se/
https://www.linux.se/kontaka-linux-se/
<BR><BR>Tack till [https://datorhjalp.se Datorhjälp Stockholm] som har  sponsrat [https://www.linux.se Linux.se] med webserver.
<BR><BR>Tack till [https://datorhjalp.se Datorhjälp Stockholm] som har  sponsrat [https://www.linux.se Linux.se] med webserver.
[[Kategori:Php]]
[[Kategori:Php]]
[[Kategori:Foreign Function Interface]]
[[Kategori:Foreign Function Interface]]

Nuvarande version från 10 oktober 2024 kl. 17.16

FFI\ParserException

_(PHP 7 >= 7.4.0, PHP 8)_

Introduktion

FFI\ParserException är en slutgiltig klass som ärver från FFI\Exception och används för att hantera specifika undantag som uppstår vid analys av FFI-kod.

Klassöversikt

final class FFI\ParserException extends FFI\Exception {
    /* Ärvda egenskaper */
    protected string $message = "";
    private string $string = "";
    protected int $code;
    protected string $file = "";
    protected int $line;
    private array $trace = [];
    private ?Throwable $previous = null;

    /* Ärvda metoder */
    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
}

Sidslut

Orginalhemsidan på Engelska :https://www.php.net/manual/en/class.ffi-parserexception.php

PHP Funktioner Funktionsreferens


Det här är en maskinöversättning av PHP-manualen till svenska. Om du hittar fel är vi tacksamma om du rapporterar dem via formuläret som finns på https://www.linux.se/kontaka-linux-se/

Tack till Datorhjälp Stockholm som har sponsrat Linux.se med webserver.