/PHP-5.5/sapi/cgi/ |
H A D | CHANGES | 30 require each script start from "#! /usr/bin/php".
|
H A D | cgi_main.c | 754 …_user_config(char *path, int path_len, const char *doc_root, int doc_root_len, int start TSRMLS_DC) 809 ptr = s2 + start; /* start is the point where doc_root ends! */ 1764 struct timeval start, end; local 1766 time_t start, end; local 2106 gettimeofday(&start, NULL); 2108 time(&start); 2575 sec = (int)(end.tv_sec - start.tv_sec); 2576 if (end.tv_usec >= start.tv_usec) { 2577 usec = (int)(end.tv_usec - start.tv_usec); 2580 usec = (int)(end.tv_usec + 1000000 - start.tv_usec); [all …]
|
H A D | README.FastCGI | 28 To run this way, you must start the PHP binary running by giving it an IP 133 page request at a time. Value 0 means that PHP willnot start additional 136 respawned automatic. Values 1 and above force PHP start additioanl processes
|
/PHP-5.5/tests/lang/ |
H A D | foreachLoop.013.phpt | 42 echo "\n\n\nShift elements off start of an unreferenced array, using &\$value."; 63 echo "\n\n\nAdding elements to the start of an unreferenced array, using &\$value."; 143 Shift elements off start of an unreferenced array, using &$value. 420 Adding elements to the start of an unreferenced array, using &$value.
|
H A D | foreachLoop.014.phpt | 44 echo "\n\n\nShift elements off start of a referenced array"; 65 echo "\n\n\nAdding elements to the start of a referenced array"; 144 Shift elements off start of a referenced array 421 Adding elements to the start of a referenced array
|
H A D | foreachLoop.015.phpt | 44 echo "\n\n\nShift elements off start of a referenced array, using &\$value"; 65 echo "\n\n\nAdding elements to the start of a referenced array, using &\$value"; 145 Shift elements off start of a referenced array, using &$value 422 Adding elements to the start of a referenced array, using &$value
|
/PHP-5.5/ext/standard/tests/strings/ |
H A D | strcspn_variation12.phpt | 2 Test strcspn() function : usage variations - with 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 varying start and len arguments 16 echo "*** Testing strcspn() : with different start and len values ***\n"; 44 //defining array of start values 65 // loop through each element of the arrays for str,mask,start and len arguments 71 foreach($start_array as $start) { 73 var_dump( strcspn($str,$mask,$start,$len) ); 83 *** Testing strcspn() : with different start and len values ***
|
H A D | bug40754.phpt | 38 Warning: substr_compare(): The start position cannot exceed initial string length in %s on line %d
|
H A D | strspn_variation12.phpt | 2 Test strspn() function : usage variations - with varying start and len args 5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]]) 7 … If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars) 13 * Testing strspn() : with varying start and len arguments 16 echo "*** Testing strspn() : with different start and len values ***\n"; 45 // defining the array for start values 71 foreach($start_array as $start) { 73 var_dump( strspn($str,$mask,$start,$len) ); 83 *** Testing strspn() : with different start and len values ***
|
/PHP-5.5/ext/oci8/ |
H A D | oci8_interface.c | 881 long start = -1, length = -1, block_length; local 887 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|ll", &filename, &filename_len, &start, &le… 889 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|ll", &filename, &filename_len, &start, &le… 894 if (ZEND_NUM_ARGS() > 1 && start < 0) { 905 …p|ll", &z_descriptor, oci_lob_class_entry_ptr, &filename, &filename_len, &start, &length) == FAILU… 907 …s|ll", &z_descriptor, oci_lob_class_entry_ptr, &filename, &filename_len, &start, &length) == FAILU… 912 if (ZEND_NUM_ARGS() > 2 && start < 0) { 941 if (start == -1) { 942 start = 0; 978 if (php_oci_lob_read(descriptor, block_length, start, &buffer, &tmp_bytes_read TSRMLS_CC)) { [all …]
|
/PHP-5.5/ext/pcre/pcrelib/ |
H A D | pcre_jit_compile.c | 293 sljit_sw start; member 309 sljit_sw start; member 1682 start, in copy_private_data() enumerator 1714 case start: in copy_private_data() 2067 list_item->start = start; in add_stub() 3192 JUMPHERE(start); in mainloop_entry() 3744 start = LABEL(); in fast_forward_first_n_chars() 3832 start = LABEL(); in fast_forward_first_char() 6305 start_cc = common->start + start; in compile_recurse_matchingpath() 6313 if (entry->start == start) in compile_recurse_matchingpath() [all …]
|
H A D | HACKING | 121 simultaneously for all possible matches that start at one point in the subject 174 OP_SOD match start of data: \A 175 OP_SOM, start of match (subject + offset): \G 176 OP_SET_SOM, set start of match (\K) 177 OP_CIRC ^ (start of data) 178 OP_CIRCM ^ multiline mode (start of data or after newline) 459 These are just like other subpatterns, but they start with the opcode 489 These are like other subpatterns, but they start with the opcode OP_COND, or 491 the condition is a back reference, this is stored at the start of the 499 group x" (coded as "(?(Rx)"), the group number is stored at the start of the [all …]
|
/PHP-5.5/sapi/nsapi/ |
H A D | nsapi-readme.txt | 10 in the start script for your Netscape server. Windows users can 11 probably skip this step. The start script is located in: 13 <path-to-netscape-server>/https-servername/start
|
/PHP-5.5/ext/standard/tests/dir/ |
H A D | rewinddir_basic.phpt | 6 * Description: Rewind dir_handle back to the start
|
/PHP-5.5/ext/mysqli/tests/ |
H A D | mysqli_fetch_array_large.phpt | 134 $start = microtime(true); 140 $duration = microtime(true) - $start;
|
/PHP-5.5/ext/ |
H A D | ext_skel | 111 dnl Comments in this file start with the string 'dnl'. 296 step 6 confirms that your module is compiled into PHP. Then, start writing
|
/PHP-5.5/ |
H A D | run-tests.php | 1926 $start = strpos($wanted_re, $r, $startOffset); 1927 if ($start !== false) { 1929 $end = strpos($wanted_re, $r, $start+2); 1932 $end = $start = $length; 1936 $start = $end = $length; 1939 $temp = $temp . preg_quote(substr($wanted_re, $startOffset, ($start - $startOffset)), '/'); 1941 if ($end > $start) { 1942 $temp = $temp . '(' . substr($wanted_re, $start+2, ($end - $start-2)). ')'; 2820 $start = $JUNIT['files'][$file_name]['start']; 2821 $JUNIT['files'][$file_name]['total'] += microtime(true) - $start;
|
H A D | UPGRADING.INTERNALS | 118 implementing Serializable will always start with "C:" in the serialized 123 start, will most likely be defectively initialized. This is now
|
/PHP-5.5/ext/mbstring/tests/ |
H A D | mb_ereg_variation5.phpt | 16 * Test mb_ereg with anchors (start and end of string) in $pattern
|
H A D | mb_substr_variation7.phpt | 10 /* Prototype : string mb_substr(string $str, int $start [, int $length [, string $encoding]])
|
/PHP-5.5/ext/dom/tests/ |
H A D | bug32615.phpt | 35 $frag->appendChild(new DOMElement('start'));
|
/PHP-5.5/ext/interbase/tests/ |
H A D | 005.phpt | 39 and ibase_query() start default transaction */ 72 $tr_def_l1 = ibase_trans(IBASE_READ); /* here transaction start */
|
/PHP-5.5/ext/standard/ |
H A D | url.c | 490 unsigned char *to, *start; in php_url_encode() local 495 start = to = (unsigned char *) safe_emalloc(3, len, 1); in php_url_encode() 525 *new_length = to - start; in php_url_encode() 527 return (char *) start; in php_url_encode()
|
/PHP-5.5/ext/standard/tests/streams/ |
H A D | stream_get_meta_data_file_variation2.phpt | 18 //seek to start of file
|
/PHP-5.5/Zend/ |
H A D | micro_bench.php | 253 function end_test($start, $name, $overhead = null) argument 259 $last_time = $end-$start;
|