PHP 8.4.22 Released!

pg_jit

(PHP 8 >= 8.4.0)

pg_jitReturns the JIT information of the server

Descripción

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.

Parámetros

connection

Una instancia PgSql\Connection. Cuando connection es null, se usa la conexión por defecto. La conexión por defecto es la última conexión hecha por pg_connect() o pg_pconnect()

Advertencia

Desde PHP 8.1.0, usar la conexión por defecto está obsoleto.

Valores devueltos

Returns an array containing the JIT information of the server.

Ver también

  • pg_version() - Devuelve un array con las versiones del cliente, del protocolo y del servidor (si está disponible)
add a note

User Contributed Notes

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