Home
last modified time | relevance | path

Searched refs:x (Results 201 – 225 of 1790) sorted by relevance

12345678910>>...72

/PHP-8.3/ext/opcache/tests/jit/
H A Dgh8461-008.phpt16 $x = 0;
27 global $x;
28 $x++;
35 global $x;
36 $x += self::A;
53 global $x;
54 $x += 1;
H A Dgh12262.phpt27 $x = new C1(1);
28 var_dump($x->equal($x));
29 var_dump($x->equal($x));
30 var_dump($x->equal($x));
H A Dgh12482.phpt12 $cloned->x = 42;
21 public $x = 4;
25 public $x = 5;
41 ["x"]=>
51 ["x"]=>
55 ["x"]=>
/PHP-8.3/ext/standard/tests/serialize/
H A Dunserialize_classes.phpt6 public $x = "bar";
22 ["x"]=>
35 ["x"]=>
46 ["x"]=>
59 ["x"]=>
70 ["x"]=>
81 ["x"]=>
/PHP-8.3/win32/
H A Dparam.h18 #define howmany(x,y) (((x)+((y)-1))/(y)) argument
19 #define roundup(x,y) ((((x)+((y)-1))/(y))*(y)) argument
/PHP-8.3/ext/spl/tests/
H A Dserialize_property_tables.phpt22 $x = new MyArrayObject([]);
23 var_dump($x->__serialize());
25 $x = new MySplDoublyLinkedList();
26 var_dump($x->__serialize());
28 $x = new MySplObjectStorage();
29 var_dump($x->__serialize());
H A Dfixedarray_022.phpt6 $x = new SplFixedArray(1);
7 $x[0] = $x;
8 var_export($x); echo "\n";
9 debug_zval_dump($x); echo "\n";
H A DarrayObject_setFlags_basic2.phpt6 private $x = 'secret';
9 var_dump($c->x);
13 $c = new C(array('x'=>'public'));
17 var_dump($c->x);
22 var_dump($c->x);
29 Fatal error: Uncaught Error: Cannot access private property C::$x in %s:19
/PHP-8.3/ext/dba/
H A Dinstall_cdb.sh35 ar x ../cdb.a
36 ar x ../byte.a
37 ar x ../unix.a
38 ar x ../byte.a
39 ar x ../buffer.a
/PHP-8.3/Zend/tests/
H A Doss_fuzz_54325.phpt7 global $x;
8 $x = new stdClass;
12 $x = strrev('foo');
13 $$x++;
14 var_dump($x);
H A Dbug71539_1.phpt5 $x = (object)['a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5,'f'=>6,'g'=>7];
6 $x->h =& $x->i;
7 $x->h = 42;
8 var_dump($x);
H A Dindirect_reference_this.phpt6 function f($x){var_dump($$x);}
8 $x = new X;
9 $x->f("this");
H A Dbug72335.phpt8 $x = (1<<53)+1;
10 $x = 1.0 * ($x - (1<<53));
12 return $x;
H A Dbug75420.15.phpt6 public function offsetExists($x): bool { }
7 public function offsetGet($x): mixed { }
8 public function offsetSet($x, $y): void { $GLOBALS["name"] = 24; var_dump($x); }
9 public function offsetUnset($x): void { }
H A Dbug34310.phpt2 Bug #34310 (foreach($arr as $c->d => $x) crashes)
16 foreach($arr as $x => $c->d)
18 echo "{$x} => {$c->d}\n";
22 foreach($arr as $c->d => $x)
24 echo "{$c->d} => {$x}\n";
/PHP-8.3/tests/classes/
H A Diterators_007.phpt8 public $x = 0;
10 …public function rewind(): void { if ($this->x == 0) throw new Exception(__METHOD__); reset($thi…
11 …public function current(): mixed { if ($this->x == 1) throw new Exception(__METHOD__); return cu…
12 …public function key(): mixed { if ($this->x == 2) throw new Exception(__METHOD__); return ke…
13 …public function next(): void { if ($this->x == 3) throw new Exception(__METHOD__); next($this…
14 …public function valid(): bool { if ($this->x == 4) throw new Exception(__METHOD__); return (ke…
19 while($t->x < 5)
32 $t->x++;
H A Ddestructor_and_references.phpt6 class test1 {public $x;};
7 class test2 {public $x;};
8 class test3 {public $x;};
9 class test4 {public $x;};
16 $o3->x = &$o4;
/PHP-8.3/Zend/
H A Dzend_build.h22 #define ZEND_TOSTR_(x) #x argument
23 #define ZEND_TOSTR(x) ZEND_TOSTR_(x) argument
/PHP-8.3/Zend/tests/match/
H A D044.phpt5 $x = 2;
6 var_dump(match ($x) {
7 2,2 => 'x',
12 string(1) "x"
/PHP-8.3/ext/standard/tests/strings/
H A Dstr_replace_array_refs2.phpt17 $obj->prop = ['x' => 'property'];
18 $obj->prop = $closure($obj->prop, ['x'], 'a');
19 var_dump(str_replace(array_keys($obj->prop), $obj->prop, "x property"));
21 $array = ['x' => 'property'];
22 $array = $closure($array, ['x'], 'a');
23 var_dump(str_replace(array_keys($array), $array, "x property"));
/PHP-8.3/ext/standard/
H A Dsha1.c114 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
115 #define G(x, y, z) ((x) ^ (y) ^ (z)) argument
116 #define H(x, y, z) (((x) & (y)) | ((z) & ((x) | (y)))) argument
117 #define I(x, y, z) ((x) ^ (y) ^ (z)) argument
121 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) argument
125 #define W(i) ( tmp=x[(i-3)&15]^x[(i-8)&15]^x[(i-14)&15]^x[i&15], \
126 (x[i&15]=ROTATE_LEFT(tmp, 1)) )
256 SHA1Decode(x, block, 64); in SHA1Transform()
259 FF(a, b, c, d, e, x[0]); /* 1 */ in SHA1Transform()
260 FF(e, a, b, c, d, x[1]); /* 2 */ in SHA1Transform()
[all …]
/PHP-8.3/Zend/tests/type_declarations/union_types/
H A Dtype_checking_weak.phpt48 42, 42.0, INF, "42", "42.0", "42x", "x", "",
101 "42x" => true
102 "x" => true
117 "42x" => true
118 "x" => true
133 "42x" => "42x"
134 "x" => "x"
149 "42x" => "42x"
150 "x" => "x"
181 "42x" => "42x"
[all …]
/PHP-8.3/ext/oci8/tests/
H A Dbug44206.phpt18 for ($x = 0; $x < 400; $x++)
20 $stmt = "select cursor (select $x from dual) a,
21 cursor (select $x from dual) b
26 echo "Exiting $x\n";
40 echo "Completed $x\n";
/PHP-8.3/ext/gd/tests/
H A Dbug49600.phpt18 $x = imagettftext($image, 32, 0, 0, 0, $color, $font, $c);
20 if ( abs($x[0] - $y[0]) > 1
21 || abs($x[2] - $y[2]) > 1
22 || abs($x[4] - $y[4]) > 1
23 || abs($x[6] - $y[6]) > 1 ) {
25 var_dump($x);
/PHP-8.3/ext/xmlwriter/tests/
H A Dbug41287.phpt11 xmlwriter_start_element_ns($xw, 'test', 'test', 'urn:x-test:');
13 xmlwriter_write_element_ns($xw, null, 'bar', 'urn:x-test:', '');
24 $xw->startElementNS('test', 'test', 'urn:x-test:');
26 $xw->writeElementNS(null, 'bar', 'urn:x-test:', '');
34 <test:test xmlns:test="urn:x-test:">
36 <bar xmlns="urn:x-test:"></bar>
41 <test:test xmlns:test="urn:x-test:">
43 <bar xmlns="urn:x-test:"></bar>

Completed in 33 milliseconds

12345678910>>...72