Home
last modified time | relevance | path

Searched refs:first (Results 51 – 75 of 652) sorted by relevance

12345678910>>...27

/PHP-7.1/tests/lang/
H A Dbug30578.phpt21 echo "This should be displayed first.\n";
30 This should be displayed first.
/PHP-7.1/Zend/tests/
H A Dbug71428.2.phpt8 public function fetch($first = null, $second, $third);
14 public function fetch($first = null, $second = null, $third = null);
H A Dbug39297.phpt5 function compareByRef(&$first, &$second) {
6 return $first === $second;
/PHP-7.1/
H A DREADME.namespaces26 The namespace declaration statement must be the very first statement in
96 inside namespace (A\B) first tries to find and call function from current
102 first tries to use (and autoload) class from current namespace and in case
107 A\B\foo() first tries to call function foo() from namespace A\B, then
117 foo(); // first tries to call "foo" defined in namespace "A"
137 B\foo(); // first tries to call function "foo" from namespace "A\B"
139 \B\foo(); // first tries to call function "foo" from namespace "B"
146 A\foo(); // first tries to call function "foo" from namespace "A\A"
150 \A\foo(); // first tries to call function "foo" from namespace "A"
160 - calls to internal functions in namespaces are slower, because PHP first
[all …]
/PHP-7.1/ext/standard/tests/general_functions/
H A Dbug25038.phpt12 bar('first try');
30 This is an exception from bar(first try).
/PHP-7.1/ext/date/tests/
H A Dbug54340.phpt9 $dt = new DateTime('first day of January 2011');
15 $dt = new DateTime('first day of January 2011');
/PHP-7.1/ext/libxml/tests/
H A Dlibxml_set_external_entity_loader_variation1.phpt27 static $first = true;
32 fwrite($f, $first ? $dtd : $entity);
33 $first = false;
/PHP-7.1/ext/simplexml/tests/
H A D007.phpt12 <elem1 attr1='first'>
55 string(5) "first"
80 string(5) "first"
H A D010.phpt16 <elem1 attr1='first'>
45 string(5) "first"
H A D002.phpt12 <elem1 attr1='first'>
45 string(5) "first"
/PHP-7.1/ext/zlib/tests/
H A Dgzrewind_variation1.phpt13 gzwrite($h, b'The first string.');
27 The first string.The second string.
H A Dgzseek_variation1.phpt13 $str1 = "This is the first line.";
30 This is the first line.
/PHP-7.1/ext/standard/tests/strings/
H A Dparse_str_basic2.phpt14 $s1 = "first=val1/second=val2/third=val3";
16 var_dump($first, $second, $third);
/PHP-7.1/ext/standard/tests/file/
H A Duserdirstream.phpt16 $sample = array('first','second','third','fourth');
44 string(5) "first"
/PHP-7.1/ext/phar/tests/
H A Dphar_stub_write_file.phpt13 $stub = b'<?php echo "first stub\n"; __HALT_COMPILER(); ?>';
52 string(48) "<?php echo "first stub\n"; __HALT_COMPILER(); ?>"
53 string(48) "<?php echo "first stub\n"; __HALT_COMPILER(); ?>"
H A Dphar_stub_write.phpt12 $stub = b'<?php echo "first stub\n"; __HALT_COMPILER(); ?>';
51 string(48) "<?php echo "first stub\n"; __HALT_COMPILER(); ?>"
52 string(48) "<?php echo "first stub\n"; __HALT_COMPILER(); ?>"
H A Dbug53872.phpt17 print(file_get_contents('phar://bug53872-phar.phar/first.txt'));
26 content of first.txt
/PHP-7.1/ext/standard/tests/array/
H A Darray_unshift_basic2.phpt17 $array = array('f' => "first", "s" => 'second', 1 => "one", 2 => 'two');
46 string(5) "first"
63 string(5) "first"
/PHP-7.1/ext/oci8/tests/
H A Dlob_037.phpt14 /* insert the first LOB */
28 var_dump($blob->write("first lob data"));
69 string(14) "first lob data"
/PHP-7.1/ext/xmlwriter/tests/
H A Dxmlwriter_write_attribute_ns_basic_001.phpt13 xmlwriter_write_attribute($xw, 'attr1', 'first');
26 <elem1 attr1="first"/>
/PHP-7.1/ext/pcre/pcrelib/testdata/
H A Dtestoutput1664 No first char
92 No first char
100 No first char
108 No first char
124 No first char
134 No first char
H A Dtestoutput217 No first char
41 No first char
63 No first char
81 No first char
168 No first char
178 No first char
190 No first char
202 No first char
210 No first char
231 No first char
[all …]
/PHP-7.1/ext/mbstring/oniguruma/enc/
H A Deuc_jp.c91 int first;
94 first = (code >> 16) & 0xff;
97 first = (code >> 8) & 0xff;
102 return first;
/PHP-7.1/ext/dom/
H A Dtext.c144 xmlChar *first; in PHP_FUNCTION() local
172 first = xmlUTF8Strndup(cur, (int)offset); in PHP_FUNCTION()
177 xmlNodeSetContent(node, first); in PHP_FUNCTION()
180 xmlFree(first); in PHP_FUNCTION()
/PHP-7.1/ext/json/tests/
H A Dbug46944.phpt9 $first = 0xf0 | ($i >> 2);
11 $string = sprintf("aa%c%c\xbf\xbdzz", $first, $second);

Completed in 40 milliseconds

12345678910>>...27