pg_jit

(PHP 8 >= 8.4.0)

pg_jitReturns the JIT information of the server

Beschreibung

function pg_jit(?PgSql\Connection $connection = null): array

pg_jit() returns an array with the JIT (Just-In-Time compilation) information of the PostgreSQL server.

Parameter-Liste

connection

Eine PgSql\Connection-Instanz. Falls connection null ist, wird die Standardverbindung benutzt. Das ist die zuletzt mit pg_connect() oder pg_pconnect() aufgebaute Verbindung.

Warnung

Seit PHP 8.1.0 ist die Verwendung der Standardverbindung veraltet.

Rückgabewerte

Returns an Array containing the JIT information of the server.

Siehe auch

  • pg_version() - Liefert ein Array, das die Versionen von Client, Protokoll und Server enthält (falls verfügbar).
add a note

User Contributed Notes

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