Searched refs:max_links (Results 1 – 23 of 23) sorted by relevance
/php-src/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-src/ext/ldap/ |
H A D | php_ldap.h | 41 zend_long max_links;
|
H A D | ldap.c | 830 …STD_PHP_INI_ENTRY_EX("ldap.max_links", "-1", PHP_INI_SYSTEM, OnUpdateLong, max_links, zend_ldap_gl… 906 if (LDAPG(max_links) == -1) { in PHP_MINFO_FUNCTION() 909 snprintf(tmp, 31, ZEND_LONG_FMT "/" ZEND_LONG_FMT, LDAPG(num_links), LDAPG(max_links)); in PHP_MINFO_FUNCTION() 976 if (LDAPG(max_links) != -1 && LDAPG(num_links) >= LDAPG(max_links)) { in PHP_FUNCTION() 1066 if (LDAPG(max_links) != -1 && LDAPG(num_links) >= LDAPG(max_links)) { in PHP_FUNCTION()
|
/php-src/ext/ldap/tests/ |
H A D | ldap_connect_error.phpt | 7 ldap.max_links=1
|
/php-src/ext/odbc/ |
H A D | php_odbc_includes.h | 239 zend_long max_links; variable
|
H A D | php_odbc.c | 470 max_links, zend_odbc_globals, odbc_globals, display_link_nums) 2322 if (ODBCG(max_links) != -1 && ODBCG(num_links) >= ODBCG(max_links)) { 2413 if (ODBCG(max_links) != -1 && ODBCG(num_links) >= ODBCG(max_links)) {
|
/php-src/ext/pgsql/ |
H A D | php_pgsql.h | 182 zend_long max_links,max_persistent;
|
H A D | pgsql.c | 483 STD_PHP_INI_ENTRY_EX("pgsql.max_links", "-1", PHP_INI_SYSTEM, OnUpdateLong, max_links, … 686 if (PGG(max_links) != -1 && PGG(num_links) >= PGG(max_links)) { in php_pgsql_do_connect() 775 if (PGG(max_links) != -1 && PGG(num_links) >= PGG(max_links)) { in php_pgsql_do_connect()
|
/php-src/ext/mysqli/ |
H A D | php_mysqli_structs.h | 240 zend_long max_links;
|
H A D | mysqli.c | 430 …STD_PHP_INI_ENTRY_EX("mysqli.max_links", "-1", PHP_INI_SYSTEM, OnUpdateLong, max_links, zend… 455 mysqli_globals->max_links = -1; in PHP_INI_END()
|
H A D | mysqli_nonapi.c | 208 if (MyG(max_links) != -1 && MyG(num_links) >= MyG(max_links)) {
|
/php-src/ |
H A D | php.ini-development | 1121 odbc.max_links = -1 1154 mysqli.max_links = -1 1239 pgsql.max_links = -1 1657 ldap.max_links = -1
|
H A D | php.ini-production | 1123 odbc.max_links = -1 1156 mysqli.max_links = -1 1241 pgsql.max_links = -1 1659 ldap.max_links = -1
|
Completed in 58 milliseconds