Home
last modified time | relevance | path

Searched refs:first (Results 26 – 50 of 652) sorted by relevance

12345678910>>...27

/PHP-7.1/ext/standard/tests/streams/
H A Dstream_multi_filters_close.phpt45 stream_filter_register("first", "FirstFilter");
47 $first = stream_filter_prepend($r, "first", STREAM_FILTER_WRITE, []);
51 stream_filter_remove($first);
/PHP-7.1/Zend/tests/
H A Dbug74340.phpt9 static $first = true;
11 if ($first) {
12 $first = false;
H A Dbug66015.phpt12 self::FIRST => 'first',
30 1 => 'first',
H A Dbug66286.phpt6 abstract class first {
10 class second extends first {
/PHP-7.1/tests/lang/
H A Dthis_assignment.phpt5 class first {
7 function me() { echo "first"; }
32 $a = new first();
/PHP-7.1/ext/opcache/Optimizer/
H A Dzend_dump.c150 if (first) first = 0; else fprintf(stderr, ", "); in zend_dump_type_info()
154 if (first) first = 0; else fprintf(stderr, ", "); in zend_dump_type_info()
159 if (first) first = 0; else fprintf(stderr, ", "); in zend_dump_type_info()
163 if (first) first = 0; else fprintf(stderr, ", "); in zend_dump_type_info()
168 if (first) first = 0; else fprintf(stderr, ", "); in zend_dump_type_info()
178 if (first) first = 0; else fprintf(stderr, ", "); in zend_dump_type_info()
182 if (first) first = 0; else fprintf(stderr, ", "); in zend_dump_type_info()
186 if (first) first = 0; else fprintf(stderr, ", "); in zend_dump_type_info()
189 if (first) first = 0; else fprintf(stderr, ", "); in zend_dump_type_info()
192 if (first) first = 0; else fprintf(stderr, ", "); in zend_dump_type_info()
[all …]
/PHP-7.1/ext/spl/tests/
H A Dspl_autoload_012.phpt9 throw new Exception('first');
44 first
48 first
52 Fatal error: Uncaught Exception: first in %sspl_autoload_012.php:%d
/PHP-7.1/tests/classes/
H A Dprivate_006b.phpt8 class first {
18 $t1 = new first();
21 class second extends first {
/PHP-7.1/sapi/fpm/fpm/
H A Dfpm_env.c202 char *first = NULL; in fpm_env_init_main() local
227 if (first == NULL) { in fpm_env_init_main()
228 first = fpm_globals.argv[i]; in fpm_env_init_main()
236 if (first == NULL) { in fpm_env_init_main()
237 first = environ[i]; in fpm_env_init_main()
244 if (first == NULL || last == NULL) { in fpm_env_init_main()
248 fpm_env_argv_len = last - first; in fpm_env_init_main()
/PHP-7.1/ext/phar/tests/tar/
H A Dphar_stub_error.phpt14 $stub = '<?php echo "first stub\n"; __HALT_COMPILER(); ?>' ."\r\n";
45 string(50) "<?php echo "first stub\n"; __HALT_COMPILER(); ?>
49 string(50) "<?php echo "first stub\n"; __HALT_COMPILER(); ?>
52 string(50) "<?php echo "first stub\n"; __HALT_COMPILER(); ?>
/PHP-7.1/ext/phar/tests/zip/
H A Dphar_stub_error.phpt14 $phar->setStub($stub = '<?php echo "first stub\n"; __HALT_COMPILER(); ?>' . "\r\n");
45 string(50) "<?php echo "first stub\n"; __HALT_COMPILER(); ?>
49 string(50) "<?php echo "first stub\n"; __HALT_COMPILER(); ?>
52 string(50) "<?php echo "first stub\n"; __HALT_COMPILER(); ?>
/PHP-7.1/ext/intl/tests/
H A Dbreakiter_first_last_previous_current_error.phpt2 IntlBreakIterator::first()/last()/previous()/current(): arg errors
14 var_dump($bi->first(1));
19 Warning: IntlBreakIterator::first() expects exactly 0 parameters, 1 given in %s on line %d
21 Warning: IntlBreakIterator::first(): breakiter_first: bad arguments in %s on line %d
H A Dbreakiter_first_basic.phpt2 IntlBreakIterator::first(): basic test
16 var_dump($bi->first());
/PHP-7.1/ext/dom/tests/
H A Dbug32615.phpt13 $frag->appendChild(new DOMElement('first'));
44 $frag->appendChild(new DOMElement('first'));
55 $frag->appendChild(new DOMElement('first'));
76 <root><first/><newsecond/><newthird/><newfourth/></root>
79 <root><first/><second/><third/><fourth/></root>
/PHP-7.1/Zend/tests/type_declarations/
H A Dscalar_strict_declaration_placement_003.phpt2 Test strict declaration being first operation only 003
11 Fatal error: strict_types declaration must be the very first statement in the script in %s on line …
H A Dscalar_strict_declaration_placement_002.phpt2 Test strict declaration being first operation only 002
14 Fatal error: strict_types declaration must be the very first statement in the script in %s on line …
H A Dscalar_strict_declaration_placement_001.phpt2 Test strict declaration being first operation only
24 Fatal error: strict_types declaration must be the very first statement in the script in %s on line …
/PHP-7.1/ext/date/tests/
H A Dbug49059.phpt12 print "\$date1 after first diff: " . $date1->format("Y-m-d") . "\n";
13 print "\$diff->days after first diff: " . $diff->days . "\n";
28 $date1 after first diff: 2009-03-27
29 $diff->days after first diff: 26
/PHP-7.1/ext/mysqli/
H A Dmysqli_warning.c75 MYSQLI_WARNING *w, *first = NULL, *prev = NULL; in php_get_warnings() local
87 if (!first) { in php_get_warnings()
88 first = w; in php_get_warnings()
96 return first; in php_get_warnings()
122 MYSQLI_WARNING *w, *first = NULL, *prev = NULL; in php_get_warnings() local
160 if (!first) { in php_get_warnings()
161 first = w; in php_get_warnings()
172 return first; in php_get_warnings()
/PHP-7.1/ext/standard/tests/http/
H A Dbug38802.phpt48 echo "-- Test: fail at first redirection --\n";
52 echo "-- Test: fail at first redirection (2) --\n";
56 echo "-- Test: return at first redirection --\n";
60 echo "-- Test: return at first redirection (2) --\n";
119 -- Test: fail at first redirection --
128 -- Test: fail at first redirection (2) --
137 -- Test: return at first redirection --
151 -- Test: return at first redirection (2) --
/PHP-7.1/ext/standard/tests/array/
H A Dreset_variation2.phpt2 Test reset() function : usage variations - unset first element
6 * Description: Set array argument's internal pointer to the first element and return it
11 * Unset first element of an array and test behaviour of reset()
H A Dbug25359.phpt10 $data = array('first', 'fifth', 'second', 'forth', 'third');
23 string(5) "first"
/PHP-7.1/ext/xmlwriter/tests/
H A Dxmlwriter_write_attribute_ns_error_001.phpt13 xmlwriter_write_attribute($xw, 'attr1', 'first');
21 // write attribute_ns without start_element first
32 <elem1 attr1="first"/>
/PHP-7.1/ext/pcre/pcrelib/
H A Dpcre_get.c206 pcre_uchar *first = entry; in pcre_get_stringtable_entries() local
208 while (first > nametable) in pcre_get_stringtable_entries()
211 (pcre_uchar *)(first - entrysize + IMM2_SIZE)) != 0) break; in pcre_get_stringtable_entries()
212 first -= entrysize; in pcre_get_stringtable_entries()
221 *firstptr = (char *)first; in pcre_get_stringtable_entries()
224 *firstptr = (PCRE_UCHAR16 *)first; in pcre_get_stringtable_entries()
227 *firstptr = (PCRE_UCHAR32 *)first; in pcre_get_stringtable_entries()
272 char *first, *last; in get_first_set() local
274 PCRE_UCHAR16 *first, *last; in get_first_set() local
276 PCRE_UCHAR32 *first, *last; in get_first_set() local
[all …]
/PHP-7.1/ext/standard/tests/file/
H A Dfile_put_contents_variation1.phpt17 $data = "The first string to write";
40 The first string to write, followed by this
42 The first string to write

Completed in 27 milliseconds

12345678910>>...27