Pdo\Pgsql::getPid

Get the PID of the backend process handling this connection

Description

public int Pdo\Pgsql::getPid()

Returns the PID of the backend process handling this connection. Note that the PID belongs to a process executing on the database server host, not the local host.

Parameters

This function has no parameters.

Return Values

Returns the PID as an int.

Examples

Example #1 Pdo\Pgsql::getPid example

<?php
$db = new Pdo\Pgsql('pgsql:dbname=test host=localhost', $user, $pass);
echo $db->getPid();
?>

The above example will output something similar to:

12345

See Also

  • pg_get_pid