Home
last modified time | relevance | path

Searched refs:start (Results 201 – 225 of 346) sorted by relevance

12345678910>>...14

/PHP-5.5/ext/standard/tests/dir/
H A Drewinddir_error.phpt6 * Description: Rewind dir_handle back to the start
H A Drewinddir_variation2.phpt6 * Description: Rewind dir_handle back to the start
H A Drewinddir_variation3.phpt6 * Description: Rewind dir_handle back to the start
/PHP-5.5/ext/iconv/tests/
H A Dbug48147.phpt12 // start invalid
/PHP-5.5/ext/posix/tests/
H A Dposix_kill_basic.phpt15 // for now start at a low pid and find first pid which does not exist.
/PHP-5.5/ext/standard/tests/strings/
H A Dstrcspn_variation8.phpt2 Test strcspn() function : usage variations - with heredoc strings, varying start and len args
5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strcspn(substr($s,$start,$len),$bad_chars)
13 * Testing strcspn() : with heredoc string, varying start and len arguments
16 echo "*** Testing strcspn() : with different start and len values ***\n";
74 // definig array of start values
101 foreach($start_array as $start) {
103 var_dump( strcspn($str,$mask,$start,$len) );
113 *** Testing strcspn() : with different start and len values ***
H A Dsubstr_compare.phpt31 Warning: substr_compare(): The start position cannot exceed initial string length in %s on line %d
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in262 ; start time - the date and time FPM has started;
263 ; start since - number of seconds since FPM has started;
282 ; start time: 01/Jul/2011:17:53:49 +0200
283 ; start since: 62636
312 ; start time - the date and time the process has started;
336 ; start time: 01/Jul/2011:17:53:49 +0200
337 ; start since: 63087
351 ; Note: The value must start with a leading slash (/). The value can be
363 ; Note: The value must start with a leading slash (/). The value can be
460 ; Chroot to this directory at the start. This value must be defined as an
[all …]
/PHP-5.5/ext/pdo_dblib/
H A DREADME21 - net start mssqlserver
/PHP-5.5/ext/pcre/tests/
H A Dpreg_match_basic.phpt12 …\s\w{5}/', $string, $match2, PREG_OFFSET_CAPTURE)); // tries to find "lo, world" at start of string
H A Dpreg_match_basic_edit.phpt17 …w{5}/', $string, $match2, PREG_OFFSET_CAPTURE)); // tries to find "lo, world" at start of string
/PHP-5.5/ext/mbstring/tests/
H A Dmb_substr_basic.phpt12 /* Prototype : string mb_substr(string $str, int $start [, int $length [, string $encoding]])
H A Dmb_ereg_match_basic.phpt26 //will return true as pattern matches from start of string
/PHP-5.5/ext/xml/tests/
H A Dxml_set_start_namespace_decl_handler_basic.phpt12 * Description: Set up start namespace declaration handler.
H A Dxml_set_element_handler_error.phpt12 * Description: Set up start and end element handlers
/PHP-5.5/ext/curl/tests/
H A Dcurl_setopt_array_basic.phpt43 ob_start(); // start output buffering
/PHP-5.5/ext/ereg/regex/
H A Dregcomp.ih23 static void repeat(register struct parse *p, sopno start, int from, int to);
41 static sopno dupl(register struct parse *p, sopno start, sopno finish);
/PHP-5.5/Zend/
H A Dbench.php360 function end_test($start, $name) argument
365 $total += $end-$start;
366 $num = number_format($end-$start,3);
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_begintransaction.phpt22 printf("[002] Cannot start a transaction, [%s] [%s]\n",
137 printf("[029] Cannot start a transaction, [%d] %s\n",
153 printf("[031] Cannot start a transaction, [%s] [%s]\n",
166 printf("[035] Cannot start a transaction, [%s] [%s]\n",
/PHP-5.5/tests/lang/
H A DforeachLoop.012.phpt42 echo "\n\n\nShift elements off start of an unreferenced array";
63 echo "\n\n\nAdding elements to the start of an unreferenced array";
142 Shift elements off start of an unreferenced array
389 Adding elements to the start of an unreferenced array
/PHP-5.5/sapi/litespeed/
H A DREADME54 start manually from command with option "-b <socket_address>", socket
117 external application. To start PHP in Self Managed Mode, "Instances"
120 start one PHP process, this process will start/stop children PHP processes
135 and start children process on demand to save system resource. This is
/PHP-5.5/
H A Dserver-tests.php1434 $start = strpos($wanted_re, $r, $startOffset);
1435 if ($start !== false) {
1437 $end = strpos($wanted_re, $r, $start+2);
1440 $end = $start = $length;
1444 $start = $end = $length;
1447 $temp = $temp . preg_quote(substr($wanted_re, $startOffset, ($start - $startOffset)), '/');
1449 if ($end > $start) {
1450 $temp = $temp . '(' . substr($wanted_re, $start+2, ($end - $start-2)). ')';
/PHP-5.5/ext/standard/tests/streams/
H A Dbug61019.phpt67 echo "Can't start external command\n";
/PHP-5.5/ext/mbstring/ucgendat/
H A Ducgendat.c225 add_range(ac_uint4 start, ac_uint4 end, char *p1, char *p2) in add_range() argument
272 rlp->ranges[0] = start; in add_range()
282 if (start > rlp->ranges[j]) { in add_range()
284 rlp->ranges[j++] = start; in add_range()
294 i < rlp->used && start > rlp->ranges[i + 1] + 1; i += 2) ; in add_range()
300 if (rlp->ranges[i] <= start && start <= rlp->ranges[i + 1] + 1) { in add_range()
316 rlp->ranges[i] = start; in add_range()
/PHP-5.5/main/
H A Drfc1867.c515 static char *substring_conf(char *start, int len, char quote) in substring_conf() argument
521 for (i = 0; i < len && start[i] != quote; ++i) { in substring_conf()
522 if (start[i] == '\\' && (start[i + 1] == '\\' || (quote && start[i + 1] == quote))) { in substring_conf()
523 *resp++ = start[++i]; in substring_conf()
525 *resp++ = start[i]; in substring_conf()

Completed in 60 milliseconds

12345678910>>...14