PHP Conference Japan 2024

Client::__construct

(沒有版本資訊,可能只存在於 Git 中)

Client::__constructClient 建構函式

說明

private mysql_xdevapi\Client::__construct()

建構 client 物件。

參數

此函式沒有參數。

範例

範例 #1 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();
新增註解

使用者貢獻的註解

此頁面沒有使用者貢獻的註解。
To Top