array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'pt_BR', ), 'this' => array ( 0 => 'function.pg-jit.php', 1 => 'pg_jit', 2 => 'Returns the JIT information of the server', ), 'up' => array ( 0 => 'ref.pgsql.php', 1 => 'Funções PostgreSQL', ), 'prev' => array ( 0 => 'function.pg-insert.php', 1 => 'pg_insert', ), 'next' => array ( 0 => 'function.pg-last-error.php', 1 => 'pg_last_error', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/pgsql/functions/pg-jit.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

pg_jit

(PHP 8 >= 8.4.0)

pg_jitReturns the JIT information of the server

Descrição

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

Uma instância de PgSql\Connection. Quando o parâmetro connection for null, a conexão padrão será usada. A conexão padrão é a última conexão feita por pg_connect() ou pg_pconnect().

Aviso

A partir do PHP 8.1.0, usar a conexão padrão foi descontinuado.

Valor Retornado

Returns an array containing the JIT information of the server.

Veja Também