Searched refs:max_links (Results 1 – 23 of 23) sorted by relevance
/PHP-8.3/ext/mysqli/tests/ |
H A D | mysqli_max_links.phpt | 2 Testing mysqli.max_links 10 mysqli.max_links=1 18 // to make sure that max_links is really set to one 19 var_dump((int)ini_get('mysqli.max_links'));
|
H A D | mysqli_phpinfo.phpt | 41 if (!stristr($phpinfo, "mysqli.max_links")) 42 printf("[008] php.ini setting mysqli.max_links not shown.\n");
|
H A D | bug54674.phpt | 10 mysqli.max_links = 1
|
H A D | bug54221.phpt | 10 mysqli.max_links = 1
|
H A D | bug51605.phpt | 10 mysqli.max_links = 1
|
H A D | mysqli_pconn_disabled.phpt | 14 mysqli.max_links=2
|
H A D | mysqli_pconn_twice.phpt | 13 mysqli.max_links=-1
|
H A D | mysqli_pconn_limits.phpt | 12 mysqli.max_links=-1
|
H A D | mysqli_pconn_reuse.phpt | 14 mysqli.max_links=2
|
H A D | mysqli_pconn_conn_multiple.phpt | 12 mysqli.max_links=-1
|
H A D | mysqli_pconn_max_links.phpt | 2 Persistent connections and mysqli.max_links
|
/PHP-8.3/ext/ldap/ |
H A D | php_ldap.h | 41 zend_long max_links;
|
H A D | ldap.c | 808 …STD_PHP_INI_ENTRY_EX("ldap.max_links", "-1", PHP_INI_SYSTEM, OnUpdateLong, max_links, zend_ldap_gl… 884 if (LDAPG(max_links) == -1) { in PHP_MINFO_FUNCTION() 887 snprintf(tmp, 31, ZEND_LONG_FMT "/" ZEND_LONG_FMT, LDAPG(num_links), LDAPG(max_links)); in PHP_MINFO_FUNCTION() 951 if (LDAPG(max_links) != -1 && LDAPG(num_links) >= LDAPG(max_links)) { in PHP_FUNCTION() 1041 if (LDAPG(max_links) != -1 && LDAPG(num_links) >= LDAPG(max_links)) { in PHP_FUNCTION()
|
/PHP-8.3/ext/ldap/tests/ |
H A D | ldap_connect_error.phpt | 7 ldap.max_links=1
|
/PHP-8.3/ext/pgsql/ |
H A D | php_pgsql.h | 186 zend_long max_links,max_persistent;
|
H A D | pgsql.c | 414 STD_PHP_INI_ENTRY_EX("pgsql.max_links", "-1", PHP_INI_SYSTEM, OnUpdateLong, max_links, … 569 if (PGG(max_links) != -1 && PGG(num_links) >= PGG(max_links)) { in php_pgsql_do_connect() 650 if (PGG(max_links) != -1 && PGG(num_links) >= PGG(max_links)) { in php_pgsql_do_connect()
|
/PHP-8.3/ext/odbc/ |
H A D | php_odbc_includes.h | 234 zend_long max_links; variable
|
H A D | php_odbc.c | 363 max_links, zend_odbc_globals, odbc_globals, display_link_nums) 2218 if (ODBCG(max_links) != -1 && ODBCG(num_links) >= ODBCG(max_links)) { in odbc_do_connect() 2293 if (ODBCG(max_links) != -1 && ODBCG(num_links) >= ODBCG(max_links)) { in odbc_do_connect()
|
/PHP-8.3/ext/mysqli/ |
H A D | php_mysqli_structs.h | 240 zend_long max_links;
|
H A D | mysqli.c | 431 …STD_PHP_INI_ENTRY_EX("mysqli.max_links", "-1", PHP_INI_SYSTEM, OnUpdateLong, max_links, zend… 456 mysqli_globals->max_links = -1; in PHP_INI_END()
|
H A D | mysqli_nonapi.c | 210 if (MyG(max_links) != -1 && MyG(num_links) >= MyG(max_links)) {
|
/PHP-8.3/ |
H A D | php.ini-development | 1151 odbc.max_links = -1 1184 mysqli.max_links = -1 1329 pgsql.max_links = -1 1768 ldap.max_links = -1
|
H A D | php.ini-production | 1153 odbc.max_links = -1 1186 mysqli.max_links = -1 1331 pgsql.max_links = -1 1770 ldap.max_links = -1
|
Completed in 82 milliseconds