Home
last modified time | relevance | path

Searched refs:a (Results 1 – 25 of 3558) sorted by relevance

12345678910>>...143

/PHP-8.1/ext/fileinfo/tests/
H A Dbug68819_001.phpt9a-----'''---------a---------------a--------a-----a-----a---------a-----as-------a----a--a---------…
/PHP-8.1/ext/oci8/tests/
H A Dimp_res_3.phpt86 1 a 1 a 1 a 1 a 1 a
125 1 a 1 a 1 a 1 a 1 a
164 1 a 1 a 1 a 1 a 1 a
203 1 a 1 a 1 a 1 a 1 a
242 1 a 1 a 1 a 1 a 1 a
281 1 a 1 a 1 a 1 a 1 a
320 1 a 1 a 1 a 1 a 1 a
359 1 a 1 a 1 a 1 a 1 a
398 1 a 1 a 1 a 1 a 1 a
437 1 a 1 a 1 a 1 a 1 a
[all …]
/PHP-8.1/tests/lang/
H A D025.phpt20 0 a 1 a 2 a 3 a 4 a 5 a 6 a 7 a 8 a 9
36 b 6 a 6 a 7 a 8 a 9
52 b 5 a 5 a 6 a 7 a 8 a 9
84 b 4 a 4 a 5 a 6 a 7 a 8 a 9
116 b 5 a 5 a 6 a 7 a 8 a 9
148 b 3 a 3 a 4 a 5 a 6 a 7 a 8 a 9
180 b 5 a 5 a 6 a 7 a 8 a 9
212 b 4 a 4 a 5 a 6 a 7 a 8 a 9
276 b 2 a 2 a 3 a 4 a 5 a 6 a 7 a 8 a 9
340 b 4 a 4 a 5 a 6 a 7 a 8 a 9
[all …]
H A DforeachLoop.016.phpt25 $b = $$a;
128 $a
134 ${'a'}
140 $$a
146 $a[0]
152 $a[0][0]
158 $a->b
164 $a->b->c
170 $a->b[0]
188 C::$a
[all …]
H A DpassByReference_007.phpt45 echo "Pass a function call that returns a value:\n";
48 var_dump($a);
50 echo "Pass a function call that returns a reference:\n";
68 echo "\nPass a method call that returns a value:\n";
73 echo "Pass a method call that returns a reference:\n";
80 Pass a function call that returns a value:
85 Pass a function call that returns a reference:
89 Pass a static method call that returns a value:
94 Pass a static method call that returns a reference:
98 Pass a method call that returns a value:
[all …]
/PHP-8.1/sapi/fpm/fpm/
H A Dfpm_arrays.h20 if (!a) { in fpm_array_init()
23 if (!a) { in fpm_array_init()
30 a->sz = sz; in fpm_array_init()
42 return a; in fpm_array_init()
50 ret = (char *) a->data + a->sz * n; in fpm_array_item()
58 return fpm_array_item(a, a->used - 1); in fpm_array_item_last()
67 void *last = fpm_array_item(a, a->used - 1); in fpm_array_item_remove()
75 --a->used; in fpm_array_item_remove()
85 if (a->used == a->allocated) { in fpm_array_push()
97 ret = fpm_array_item(a, a->used); in fpm_array_push()
[all …]
/PHP-8.1/ext/session/tests/
H A Dsession_basic3.phpt31 <a href="/">test</a>
32 <a href="/#bar">test</a>
33 <a href="/?foo">test</a>
34 <a href="/?foo#bar">test</a>
35 <a href="/?foo=var">test</a>
37 <a href="file.php">test</a>
103 <a href="/">test</a>
104 <a href="/path">test</a>
107 <a href="../">test</a>
112 <a href="/#bar">test</a>
[all …]
H A Dsession_basic5.phpt34 <a href="/">test</a>
35 <a href="/path">test</a>
36 <a href="/path/">test</a>
38 <a href="../">test</a>
39 <a href="../path">test</a>
40 <a href="../path/">test</a>
43 <a href="/#bar">test</a>
46 <a href="../#bar">test</a>
50 <a href="/?foo">test</a>
54 <a href="../?foo">test</a>
[all …]
/PHP-8.1/ext/opcache/tests/jit/
H A Dadd_007.phpt27 $a = $a + $b;
28 $a = $a + $c;
29 $a = $a + $d;
30 $a = $a + $e;
31 $a = $a + $f;
32 $a = $a + $g;
33 $a = $a + $h;
34 $a = $a + $i;
35 $a = $a + $j;
50 $a = $a - $b;
[all …]
H A Didentical_002.phpt21 $a = 0.0;
37 if ($a === $b) {
40 if ($a === $c) {
43 if ($a === $d) {
46 if ($a !== $b) {
49 if ($a !== $c) {
52 if ($a !== $d) {
55 if ($a === $b) {
59 if ($a === $c) {
63 if ($a === $d) {
[all …]
/PHP-8.1/ext/spl/tests/
H A Dfixedarray_010.phpt9 $a[0] = 1;
11 $a->setSize(2);
12 $a->setSize(3);
13 $a->setSize(0);
16 $a->setSize(0);
20 $a->setSize(10);
24 $a->setSize(5);
28 $a->setSize(3);
33 $a[0] = "test";
35 $a[2] = 1;
[all …]
H A Dbug77903.phpt5 $a = new ArrayIterator();
6 $a->rewind();
9 $a->offsetSet(1,1);
11 var_dump($a->current()); // 1
12 $a->next();
15 $a->offsetSet(4,4);
18 $a->next();
21 $a->next();
24 $a->offsetSet(2,2);
27 $a->next();
[all …]
/PHP-8.1/ext/phar/tests/zip/files/
H A Dcorrupt2.php.inc3 $a = new corrupt_zipmaker;
4 $a->addFile('hi', null, 'hii');
7 $a = new corrupt_zipmaker;
11 $a = new corrupt_zipmaker;
15 $a = new corrupt_zipmaker;
18 $a = new corrupt_zipmaker;
21 $a = new corrupt_zipmaker;
24 $a = new corrupt_zipmaker;
27 $a = new corrupt_zipmaker;
30 $a = new corrupt_zipmaker;
[all …]
/PHP-8.1/ext/ctype/tests/
H A Dctype_print_variation2.phpt26 character code 32 is a printable character
27 character code 33 is a printable character
28 character code 34 is a printable character
29 character code 35 is a printable character
30 character code 36 is a printable character
31 character code 37 is a printable character
32 character code 38 is a printable character
33 character code 39 is a printable character
34 character code 40 is a printable character
35 character code 41 is a printable character
[all …]
H A Dctype_graph_variation2.phpt26 character code 33 is a printable character
27 character code 34 is a printable character
28 character code 35 is a printable character
29 character code 36 is a printable character
30 character code 37 is a printable character
31 character code 38 is a printable character
32 character code 39 is a printable character
33 character code 40 is a printable character
34 character code 41 is a printable character
35 character code 42 is a printable character
[all …]
/PHP-8.1/ext/standard/tests/general_functions/
H A Doutput_add_rewrite_var_basic3.phpt21 <a href=""> </a>
22 <a href="./foo.php"> </a>
23 <a href="//php.net/foo.php"> </a>
25 <a href="bad://php.net/foo.php"> </a>
26 <a href="//www.php.net/foo.php"> </a>
41 <a href=""> </a>
42 <a href="./foo.php"> </a>
43 <a href="//php.net/foo.php"> </a>
63 <a href=""> </a>
64 <a href="./foo.php"> </a>
[all …]
H A Doutput_add_rewrite_var_basic4.phpt21 <a href=""> </a>
22 <a href="./foo.php"> </a>
23 <a href="//php.net/foo.php"> </a>
25 <a href="bad://php.net/foo.php"> </a>
26 <a href="//www.php.net/foo.php"> </a>
41 <a href=""> </a>
42 <a href="./foo.php"> </a>
43 <a href="//php.net/foo.php"> </a>
63 <a href=""> </a>
64 <a href="./foo.php"> </a>
[all …]
H A Doutput_add_rewrite_var_basic2.phpt22 <a href=""> </a>
23 <a href="./foo.php"> </a>
24 <a href="//php.net/foo.php"> </a>
26 <a href="bad://php.net/foo.php"> </a>
27 <a href="//www.php.net/foo.php"> </a>
42 <a href=""> </a>
43 <a href="./foo.php"> </a>
44 <a href="//php.net/foo.php"> </a>
64 <a href=""> </a>
65 <a href="./foo.php"> </a>
[all …]
/PHP-8.1/ext/standard/tests/array/
H A Dbug29493.phpt8 // refcount($a) = 1
10 $b = $a;
11 // refcount($a) = 2
14 // refcount($a) = 1
17 var_dump($a, $b);
23 var_dump($a, $b);
31 $b = &$a;
39 var_dump($a, $b);
53 $b = &$a;
62 var_dump($a);
[all …]
/PHP-8.1/ext/phar/tests/zip/
H A Dbzip2.phpt16 var_dump($a->getAlias());
24 $a = new corrupt_zipmaker;
28 $a = new corrupt_zipmaker;
32 $a = new corrupt_zipmaker;
36 $a = new corrupt_zipmaker;
39 $a = new corrupt_zipmaker;
42 $a = new corrupt_zipmaker;
45 $a = new corrupt_zipmaker;
48 $a = new corrupt_zipmaker;
51 $a = new corrupt_zipmaker;
[all …]
/PHP-8.1/ext/dom/tests/
H A Dbug80602.phpt10 $doc->loadXML('<a>foo<last/></a>');
159 1 <a>foo<last/></a>
160 2 <a>foo<last/></a>
161 3 <a><last/>foo</a>
162 4 <a>foo<last/></a>
163 5 <a>foo<last/></a>
164 6 <a><last/>foo</a>
165 7 <a><last/>foo</a>
166 8 <a>foo<last/></a>
175 17 <a>barfoo<last/></a>
[all …]
H A Dbug80602_2.phpt10 $doc->loadXML('<a>foo<last/></a>');
159 1 <a>foo<last/></a>
160 2 <a>foo<last/></a>
161 3 <a>foo<last/></a>
162 4 <a><last/>foo</a>
163 5 <a>foo<last/></a>
164 6 <a><last/>foo</a>
165 7 <a><last/>foo</a>
166 8 <a>foo<last/></a>
175 17 <a>barfoo<last/></a>
[all …]
/PHP-8.1/Zend/tests/
H A Dlist_keyed_evaluation_order_2.phpt8 list($a, $b) = ['a', 'b'];
9 var_dump($a);
12 list(0 => $a, 1 => $b) = ['a', 'b'];
13 var_dump($a);
16 list(1 => $b, 0 => $a) = ['a', 'b'];
17 var_dump($a);
46 $a = 0;
47 list($a => $a) = ['foo', 'bar'];
48 var_dump($a);
51 $a = 0;
[all …]
/PHP-8.1/ext/json/tests/
H A Djson_encode_u2028_u2029.phpt22 string(8) "["aáb"]"
23 string(10) ""a\u2027b""
24 string(7) ""a‧b""
25 string(10) ""a\u2028b""
26 string(10) ""a\u2028b""
27 string(10) ""a\u2028b""
28 string(7) ""a
b""
29 string(10) ""a\u2029b""
30 string(10) ""a\u2029b""
32 string(7) ""a
b""
[all …]
/PHP-8.1/ext/opcache/tests/
H A Dbug73847.phpt8 $a = 42;
9 $a = array($a);
10 var_dump($a);
12 $a = 42;
13 $a = array($a => 24);
14 var_dump($a);
16 $a = 42;
17 $a = array($a, 24);
18 var_dump($a);
20 $a = 42;
[all …]

Completed in 84 milliseconds

12345678910>>...143