/PHP-5.5/Zend/tests/ |
H A D | debug_print_backtrace_limit.phpt | 2 debug_print_backtrace limit
|
H A D | debug_backtrace_limit.phpt | 2 debug_backtrace limit
|
/PHP-5.5/ext/standard/tests/http/ |
H A D | bug38802.phpt | 104 Warning: fopen(http://127.0.0.1:12342/foo/bar): failed to open stream: Redirection limit reached, a… 115 Warning: fopen(http://127.0.0.1:12342/foo/bar): failed to open stream: Redirection limit reached, a… 123 Warning: fopen(http://127.0.0.1:12342/foo/bar): failed to open stream: Redirection limit reached, a…
|
/PHP-5.5/ext/standard/tests/strings/ |
H A D | explode_variation1.phpt | 6 /* Prototype : array explode ( string $delimiter , string $string [, int $limit ] ) 74 $limit = 5; 77 var_dump( explode($delimiter, $string, $limit) );
|
H A D | explode_variation4.phpt | 6 /* Prototype : array explode ( string $delimiter , string $string [, int $limit ] )
|
/PHP-5.5/ext/standard/tests/mail/ |
H A D | ezmlm_hash_variation1.phpt | 6 /* Prototype : array explode ( string $delimiter , string $string [, int $limit ] ) 74 $limit = 5; 77 var_dump( explode($delimiter, $string, $limit) );
|
/PHP-5.5/ext/filter/tests/ |
H A D | bug52929.phpt | 9 // Beyond the allowable limit for an e-mail address.
|
/PHP-5.5/ext/pcre/tests/ |
H A D | bug37800.phpt | 2 Bug #37800 (preg_replace() limit parameter odd behaviour)
|
H A D | preg_replace_variation1.phpt | 6 * proto string preg_replace(mixed regex, mixed replace, mixed subject [, int limit [, count]])
|
H A D | preg_split_error2.phpt | 6 * proto array preg_split(string pattern, string subject [, int limit [, int flags]])
|
H A D | preg_replace_error2.phpt | 6 * proto string preg_replace(mixed regex, mixed replace, mixed subject [, int limit [, count]])
|
/PHP-5.5/ext/mbstring/tests/ |
H A D | mb_split_variation1.phpt | 10 /* Prototype : proto array mb_split(string pattern, string string [, int limit]) 20 $limit = 10; 95 var_dump( mb_split($input, $string, $limit) );
|
H A D | mb_split_variation3.phpt | 2 Test mb_split() function : usage variations - different parameter types for limit 10 /* Prototype : proto array mb_split(string pattern, string string [, int limit])
|
/PHP-5.5/ext/ereg/tests/ |
H A D | spliti_variation_002.phpt | 5 /* Prototype : proto array spliti(string pattern, string string [, int limit]) 20 $limit = 5; 77 var_dump( spliti($pattern, $value, $limit) );
|
H A D | split_variation_002.phpt | 5 /* Prototype : proto array split(string pattern, string string [, int limit]) 20 $limit = 5; 77 var_dump( split($pattern, $value, $limit) );
|
H A D | spliti_basic_004.phpt | 5 /* Prototype : proto array spliti(string pattern, string string [, int limit])
|
H A D | spliti_basic_003.phpt | 5 /* Prototype : proto array spliti(string pattern, string string [, int limit])
|
H A D | spliti_variation_001.phpt | 5 /* Prototype : proto array spliti(string pattern, string string [, int limit]) 20 $limit = 5; 77 var_dump( spliti($value, $string, $limit) );
|
H A D | split_variation_001.phpt | 5 /* Prototype : proto array split(string pattern, string string [, int limit]) 20 $limit = 5; 77 var_dump( split($value, $string, $limit) );
|
H A D | split_basic_003.phpt | 5 /* Prototype : proto array split(string pattern, string string [, int limit])
|
/PHP-5.5/ext/session/ |
H A D | mod_mm.c | 450 time_t limit; in PS_GC_FUNC() local 457 time(&limit); in PS_GC_FUNC() 459 limit -= maxlifetime; in PS_GC_FUNC() 467 if (sd->ctime < limit) { in PS_GC_FUNC()
|
/PHP-5.5/ext/oci8/tests/ |
H A D | bug44113.phpt | 24 // timout limit on slow networks.
|
/PHP-5.5/sapi/caudium/ |
H A D | TODO | 4 - configurable limit of number of concurrent PHP executions
|
/PHP-5.5/ext/spl/ |
H A D | spl_iterators.c | 1391 intern->u.limit.offset = 0; /* start at beginning */ in spl_dual_it_construct() 1392 intern->u.limit.count = -1; /* get all */ in spl_dual_it_construct() 1393 …NUM_ARGS() TSRMLS_CC, "O|ll", &zobject, ce_inner, &intern->u.limit.offset, &intern->u.limit.count)… in spl_dual_it_construct() 1397 if (intern->u.limit.offset < 0) { in spl_dual_it_construct() 1402 if (intern->u.limit.count < 0 && intern->u.limit.count != -1) { in spl_dual_it_construct() 2462 …if (intern->u.limit.count != -1 && intern->current.pos >= intern->u.limit.offset + intern->u.limit… in spl_limit_it_valid() 2474 if (pos < intern->u.limit.offset) { in spl_limit_it_seek() 2478 if (pos >= intern->u.limit.offset + intern->u.limit.count && intern->u.limit.count != -1) { in spl_limit_it_seek() 2524 spl_limit_it_seek(intern, intern->u.limit.offset TSRMLS_CC); in SPL_METHOD() 2536 …RETURN_BOOL((intern->u.limit.count == -1 || intern->current.pos < intern->u.limit.offset + intern-… in SPL_METHOD() [all …]
|
/PHP-5.5/ext/standard/ |
H A D | file.c | 2049 char *temp, *tptr, *bptr, *line_end, *limit; in php_fgetcsv() local 2064 line_end = limit = tptr; in php_fgetcsv() 2081 inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv() 2143 if ((size_t)temp_len > (size_t)(limit - buf)) { in php_fgetcsv() 2160 … line_end = limit = (char *)php_fgetcsv_lookup_trailing_spaces(buf, buf_len, delimiter TSRMLS_CC); in php_fgetcsv() 2161 line_end_len = buf_len - (size_t)(limit - buf); in php_fgetcsv() 2225 inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv() 2249 inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv() 2280 inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv()
|