Home
last modified time | relevance | path

Searched refs:reconnect (Results 1 – 21 of 21) sorted by relevance

/PHP-8.1/ext/mysqli/tests/
H A Dwrite_property.phpt16 $driver->reconnect = 0;
17 var_dump($driver->reconnect);
20 $driver->reconnect = $str;
21 var_dump($driver->reconnect);
23 $driver->reconnect = [];
41 Cannot assign array to property mysqli_driver::$reconnect of type bool
H A Dmysqli_driver.phpt111 $reconnect = $driver->reconnect;
112 if (!is_bool($reconnect)) {
114 gettype($reconnect), $reconnect);
118 $driver->reconnect = true;
119 $driver->reconnect = false;
120 $driver->reconnect = $reconnect;
H A Dmysqli_class_mysqli_driver_interface.phpt72 printf("driver->reconnect = '%s'\n", $driver->reconnect);
90 reconnect
94 reconnect
104 driver->reconnect = ''
H A Dwrite_property_strict.phpt19 $driver->reconnect = 0;
33 Cannot assign int to property mysqli_driver::$reconnect of type bool
H A Dmysqli_phpinfo.phpt44 if (!stristr($phpinfo, "mysqli.reconnect"))
45 printf("[009] php.ini setting mysqli.reconnect not shown.\n");
H A Dbug54674.phpt13 mysqli.reconnect = Off
H A Dbug54221.phpt13 mysqli.reconnect = Off
H A Dbug51605.phpt13 mysqli.reconnect = Off
H A Dmysqli_reconnect.phpt2 Trying implicit reconnect after wait_timeout and KILL using mysqli_ping()
12 mysqli.reconnect=1
H A Dmysqli_no_reconnect.phpt2 Trying implicit reconnect after wait_timeout and KILL using mysqli_ping()
10 mysqli.reconnect=0
H A Dmysqli_get_client_stats.phpt1052 ["reconnect"]=>
/PHP-8.1/ext/mysqli/
H A Dmysqli_driver.c33 ZVAL_BOOL(retval, MyG(reconnect)); in driver_reconnect_read()
42 MyG(reconnect) = Z_TYPE_P(value) == IS_TRUE; in driver_reconnect_write()
H A Dphp_mysqli_structs.h268 zend_long reconnect; variable
H A Dmysqli_nonapi.c330 char reconnect = MyG(reconnect); local
331 mysql_options(mysql->mysql, MYSQL_OPT_RECONNECT, (char *)&reconnect);
H A Dmysqli.stub.php16 public bool $reconnect = false; variable in mysqli_driver
H A Dmysqli.c495 …STD_PHP_INI_BOOLEAN("mysqli.reconnect", "0", PHP_INI_SYSTEM, OnUpdateLong, reconnect, zend_…
518 mysqli_globals->reconnect = 0; in PHP_INI_END()
/PHP-8.1/ext/oci8/tests/
H A Dtestping.phpt2 Exercise OCIPing functionality on reconnect (code coverage test)
/PHP-8.1/ext/pdo_mysql/
H A Dmysql_driver.c799 zend_long reconnect = 1; local
800 mysql_options(H->server, MYSQL_OPT_RECONNECT, (const char*)&reconnect);
/PHP-8.1/ext/mysqlnd/
H A Dmysqlnd_connection.c568 bool reconnect = FALSE; local
588 reconnect = TRUE;
717 if (reconnect) {
/PHP-8.1/
H A Dphp.ini-development1199 ; Allow or prevent reconnect
1200 mysqli.reconnect = Off
H A Dphp.ini-production1201 ; Allow or prevent reconnect
1202 mysqli.reconnect = Off

Completed in 69 milliseconds