Home
last modified time | relevance | path

Searched refs:first (Results 1 – 25 of 473) sorted by relevance

12345678910>>...19

/PHP-8.1/ext/mbstring/libmbfl/mbfl/
H A Dmk_eaw_tbl.awk22 first = v
27 printf("{ 0x%04x, 0x%04x }", first, prev)
28 first = v
37 printf("{ 0x%04x, 0x%04x }", first, prev)
49 first = vs
54 printf("{ 0x%04x, 0x%04x }", first, prev)
55 first = vs
64 printf("{ 0x%04x, 0x%04x }", first, prev)
76 printf("{ 0x%04x, 0x%04x }", first, prev)
/PHP-8.1/ext/date/tests/
H A Dbug51096.phpt2 Bug #51096 (Test for "first day" vs "first day of")
6 'first day',
9 'first day next month',
11 'first day of next month',
29 first day
30 - month: 0; day: 1; first-day-of: false; last-day-of: false
38 - month: 1; day: 0; first-day-of: false; last-day-of: false
41 first day next month
49 first day of next month
50 - month: 1; day: 0; first-day-of: true; last-day-of: false
[all …]
H A Dstrtotime_basic.phpt2 strtotime() function - a test to show the difference in behaviour between 'first' and '1', "second"…
7 * The first of December 2008 is a Monday.
8 * The term "Monday December 2008" will be parsed as the first Monday in December 2008.
12 * This is parsed as the "first following Monday OR the current day if it is a Monday"
16 * This is parsed as the "second following Monday OR the first following
26 * This is parsed as the "first following Monday after the first Monday in December"
28 var_dump(date('Y-m-d', strtotime('first Monday December 2008')));
30 * This is parsed as the "second following Monday after the first Monday in December"
34 * This is parsed as the "third following Monday after the first Monday in December"
/PHP-8.1/ext/standard/tests/array/
H A Darray_unshift_variation2.phpt127 string(5) "first"
144 string(5) "first"
158 string(5) "first"
175 string(5) "first"
189 string(5) "first"
206 string(5) "first"
220 string(5) "first"
237 string(5) "first"
251 string(5) "first"
268 string(5) "first"
[all …]
H A Darray_slice.phpt74 *** Variation with first two Arguments ***
82 *** Variation with first three Arguments ***
124 *** Variation with first two Arguments ***
170 *** Variation with first three Arguments ***
288 *** Variation with first two Arguments ***
404 *** Variation with first two Arguments ***
556 *** Variation with first two Arguments ***
672 *** Variation with first two Arguments ***
788 *** Variation with first two Arguments ***
904 *** Variation with first two Arguments ***
[all …]
H A Darray_shift_variation8.phpt9 * it will return a *copy* of the first element of the array,
11 * The solution is to reference the first element before removing it with array_shift():
24 // solution: referencing the first element first:
25 echo "\n-- Reference first element before array_shift: --\n";
43 -- Reference first element before array_shift: --
H A Darray_intersect_key_variation8.phpt10 'first' => array('blue' => 1, 'red' => 2),
19 'first' => array('blue' => 1, 'red' => 2,),
31 ["first"]=>
45 ["first"]=>
H A Darray_unshift_object.phpt61 $array = array('f' => "first", "s" => 'second', 1, 2.222);
110 string(5) "first"
130 string(5) "first"
145 string(5) "first"
163 string(5) "first"
182 string(5) "first"
204 string(5) "first"
221 string(5) "first"
241 string(5) "first"
256 string(5) "first"
[all …]
H A Darray_unshift_variation9.phpt100 string(5) "first"
117 string(5) "first"
132 string(5) "first"
150 string(5) "first"
167 string(5) "first"
187 string(5) "first"
205 string(5) "first"
226 string(5) "first"
242 string(5) "first"
261 string(5) "first"
[all …]
/PHP-8.1/ext/pdo_mysql/tests/
H A Dbug80458.phpt29 $res = $db->query('DELETE FROM test WHERE first=2');
42 $stmt = $db->prepare('SELECT first FROM test WHERE first=5');
54 $db->exec('CREATE PROCEDURE ret() BEGIN SELECT first FROM test WHERE first=7; END;');
83 $stmt = $db->prepare('SELECT first FROM test WHERE first=12');
95 $db->exec('CREATE PROCEDURE ret() BEGIN SELECT first FROM test WHERE first=14; END;');
110 $stmt = $db->prepare('SELECT first FROM test WHERE first=16');
131 ["first"]=>
142 ["first"]=>
159 ["first"]=>
170 ["first"]=>
[all …]
H A Dbug79375.phpt32 $query = "SELECT first FROM test WHERE first = 1 FOR UPDATE";
45 $query = "SELECT first FROM test WHERE first = 1 FOR UPDATE";
60 $query = "SELECT first FROM test WHERE first = 1 FOR UPDATE";
73 testNormalQuery($db, 'first connection');
89 testUnbuffered($db, 'first connection');
102 Running query on first connection
103 Got 1 for first connection
107 Running query on first connection
108 Got 1 for first connection
112 Running query on first connection
[all …]
/PHP-8.1/ext/bcmath/
H A Dbcmath.c177 bc_init_num(&first); in PHP_FUNCTION()
196 bc_free_num(&first); in PHP_FUNCTION()
228 bc_init_num(&first); in PHP_FUNCTION()
247 bc_free_num(&first); in PHP_FUNCTION()
279 bc_init_num(&first); in PHP_FUNCTION()
298 bc_free_num(&first); in PHP_FUNCTION()
330 bc_init_num(&first); in PHP_FUNCTION()
386 bc_init_num(&first); in PHP_FUNCTION()
443 bc_init_num(&first); in PHP_FUNCTION()
501 bc_init_num(&first); in PHP_FUNCTION()
[all …]
/PHP-8.1/Zend/tests/
H A Dbug68262.phpt10 $first = new C;
11 $first->p = 'init';
13 $clone = clone $first;
14 $ref =& $first->p;
17 $clone = clone $first;
20 var_dump($first->p);
/PHP-8.1/ext/mysqli/tests/
H A Dbug79375.phpt26 $query = "SELECT first FROM test WHERE first = 1 FOR UPDATE";
40 $query = "SELECT first FROM test WHERE first = 1 FOR UPDATE";
54 $query = "SELECT first FROM test WHERE first = 1 FOR UPDATE";
66 $query = "SELECT first FROM test WHERE first = 1 FOR UPDATE";
81 $query = "SELECT first FROM test WHERE first = 1 FOR UPDATE";
149 Running query on first connection
150 Got %d for first connection
155 Got %d for first connection
160 Got %d for first connection
165 Got %d for first connection
[all …]
/PHP-8.1/ext/spl/tests/
H A Dbug45614.phpt25 echo "--> Show the first two items:\n";
28 echo "\n--> Rewind and show the first two items:\n";
32 echo "\n--> Invalidate current position and show the first two items:\n";
37 echo "\n--> Rewind, seek and show the first two items:\n";
43 --> Show the first two items:
47 --> Rewind and show the first two items:
51 --> Invalidate current position and show the first two items:
55 --> Rewind, seek and show the first two items:
H A Dspl_autoload_012.phpt9 throw new Exception('first');
42 first
44 first
47 Fatal error: Uncaught Exception: first in %sspl_autoload_012.php:%d
/PHP-8.1/tests/classes/
H A Dfinal.phpt6 class first {
8 echo "Call to function first::show()\n";
12 $t = new first();
15 class second extends first {
27 Call to function first::show()
H A Dprivate_006.phpt5 class first {
11 first::show();
15 first::do_show();
17 class second extends first {
/PHP-8.1/ext/standard/tests/strings/
H A Dbug20261.phpt5 $first = "boo";
6 $second = $first;
9 echo "1: ".$first."\n";
15 echo "1: ".$first."\n";
H A Dbug21453.phpt7 <tr><td>first cell before < first cell after</td></tr>
16 first cell before < first cell after
H A Dparse_str_basic1.phpt9 $s1 = "first=val1&second=val2&third=val3";
15 $s1 = "first=val1&second=val2&third=val3";
31 ["first"]=>
42 ["first"]=>
53 ["first"]=>
/PHP-8.1/ext/zlib/tests/
H A Dgzrewind_basic.phpt16 echo "first 10 characters=".gzread($h, 10)."\n";
18 echo "first 20 characters=".gzread($h, 20)."\n";
26 first 30 characters=When you're taught through fee
29 first 10 characters=When you'r
30 first 20 characters=When you're taught t
/PHP-8.1/ext/pcre/pcre2lib/
H A Dpcre2_substring.c76 PCRE2_SPTR first, last, entry; in pcre2_substring_copy_byname() local
81 &first, &last); in pcre2_substring_copy_byname()
164 PCRE2_SPTR first, last, entry; in pcre2_substring_get_byname() local
169 &first, &last); in pcre2_substring_get_byname()
271 PCRE2_SPTR first, last, entry; in pcre2_substring_length_byname() local
276 &first, &last); in pcre2_substring_length_byname()
495 PCRE2_SPTR first; in pcre2_substring_nametable_scan() local
499 first = last = entry; in pcre2_substring_nametable_scan()
500 while (first > nametable) in pcre2_substring_nametable_scan()
503 first -= entrysize; in pcre2_substring_nametable_scan()
[all …]
/PHP-8.1/ext/standard/tests/dir/
H A Drewinddir_basic.phpt25 echo "\n-- Read and rewind first directory (argument supplied) --\n";
29 $first = $data[0];
34 var_dump(readdir($dh1) == $first);
41 $first = $data[0];
46 var_dump(readdir() == $first);
66 -- Read and rewind first directory (argument supplied) --
/PHP-8.1/ext/phar/tests/
H A Dphar_stub_error.phpt12 $stub = '<?php echo "first stub\n"; __HALT_COMPILER(); ?>';
47 string(48) "<?php echo "first stub\n"; __HALT_COMPILER(); ?>"
48 string(48) "<?php echo "first stub\n"; __HALT_COMPILER(); ?>"
51 string(48) "<?php echo "first stub\n"; __HALT_COMPILER(); ?>"
53 string(48) "<?php echo "first stub\n"; __HALT_COMPILER(); ?>"

Completed in 68 milliseconds

12345678910>>...19