PHP 8.5.0 Beta 3 available for testing

Client::__construct

(No version information available, might only be in Git)

Client::__construct β€” Constructor del cliente

DescripciΓ³n

private mysql_xdevapi\Client::__construct()

Construye un objeto cliente.

ParΓ‘metros

Esta funciΓ³n no contiene ningΓΊn parΓ‘metro.

Ejemplos

Ejemplo #1 Ejemplo de mysql_xdevapi\Client::__construct()

<?php
$pooling_options
= '{
"enabled": true,
"maxSize": 10,
"maxIdleTime": 3600,
"queueTimeOut": 1000
}'
;
$client = mysql_xdevapi\getClient($connection_uri, $pooling_options);
$session = $client->getSession();
οΌ‹add a note

User Contributed Notes

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