Home
last modified time | relevance | path

Searched refs:X (Results 101 – 125 of 552) sorted by relevance

12345678910>>...23

/PHP-8.2/ext/dom/tests/
H A Dbug70558.phpt8 class X extends \DOMDocument {
11 var_dump($this->registerNodeClass('DOMDocument', 'X'));
15 $dom = clone (new X());
/PHP-8.2/Zend/tests/type_declarations/variance/
H A Dproperty_types_early_bind.phpt6 class X {}
7 class_alias('X', 'Y');
10 public X $prop;
H A Dclass_order_autoload_error9.phpt17 function m(): X {}
21 } elseif ($class == 'X') {
22 class X extends B {}
23 var_dump(new X);
H A Dinfinite_recursion.phpt7 class X {
10 class Y extends X {
17 Fatal error: Declaration of Y::test(): C must be compatible with X::test(): I in %s on line %d
H A Dclass_order_autoload_error3.phpt9 public function method(): X {}
15 } else if ($class == 'X') {
16 class X {
20 class Y extends X {
/PHP-8.2/Zend/tests/type_declarations/intersection_types/variance/
H A Dvalid6.phpt6 interface X {}
11 public function test(): X|Z {}
14 public function test(): X&Y {}
H A Dinvalid3.phpt6 interface X {}
13 function method(): X&Y {}
18 Fatal error: Declaration of Test2::method(): X&Y must be compatible with Test::method(): int in %s …
H A Dvalid8.phpt14 function method(): X&Traversable {}
15 function method2(): X&MyIterator {}
16 function method3(): X&Z {}
H A Dinvalid5.phpt6 interface X {}
13 function method(): X&Y {}
18 Fatal error: Declaration of Test2::method(): X&Y must be compatible with Test::method(): Traversabl…
/PHP-8.2/Zend/tests/type_declarations/dnf_types/variance/
H A Dvalid6.phpt6 interface X {}
11 public function test(): X|Z {}
14 public function test(): (X&Y)|Z {}
H A Dvalid4.phpt8 interface X {}
11 public (A&B)|X $prop;
14 public B|X $prop;
/PHP-8.2/ext/reflection/tests/
H A DReflectionClass_getProperty_003.phpt34 class X {
35 static public $pubC = "pubC in X";
36 static protected $protC = "protC in X";
37 static private $privC = "privC in X";
85 showInfo("X::pubC");
86 showInfo("X::protC");
87 showInfo("X::privC");
88 showInfo("X::doesNotExist");
238 --- (Reflecting on X::pubC) ---
240 --- (Reflecting on X::protC) ---
[all …]
H A DReflectionClass_getProperty_004.phpt34 class X {
35 public $pubC = "pubC in X";
36 protected $protC = "protC in X";
37 private $privC = "privC in X";
89 showInfo("X::pubC");
90 showInfo("X::protC");
91 showInfo("X::privC");
92 showInfo("X::doesNotExist");
242 --- (Reflecting on X::pubC) ---
244 --- (Reflecting on X::protC) ---
[all …]
H A DReflectionClass_isSubclassOf_error1.phpt8 var_dump($rc->isSubclassOf('X'));
12 Fatal error: Uncaught ReflectionException: Class "X" does not exist in %s:%d
14 #0 %s(5): ReflectionClass->isSubclassOf('X')
H A DReflectionObject_isSubclassOf_error.phpt8 var_dump($ro->isSubclassOf('X'));
12 Fatal error: Uncaught ReflectionException: Class "X" does not exist in %s:%d
14 #0 %s(%d): ReflectionClass->isSubclassOf('X')
H A DReflectionClass_isSubclassOf_basic.phpt10 class X implements I {}
12 $classNames = array('A', 'B', 'C', 'I', 'X');
41 Is A a subclass of X?
56 Is B a subclass of X?
71 Is C a subclass of X?
86 Is I a subclass of X?
89 Is X a subclass of A?
92 Is X a subclass of B?
95 Is X a subclass of C?
98 Is X a subclass of I?
[all …]
/PHP-8.2/sapi/cgi/tests/
H A Dapache_request_headers.phpt33 X-Powered-By: PHP/%s
41 …[X-Test] => AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA…
45 …[X-_test] => AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA…
49 …[X-] => AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA…
/PHP-8.2/ext/standard/tests/strings/
H A Dsscanf_basic8.phpt10 $format2 = "%X %X %X %X %X %X";
H A Dprintf_basic9.phpt15 $format11 = "%X";
16 $format22 = "%X %X";
17 $format33 = "%X %X %X";
/PHP-8.2/Zend/tests/array_unpack/
H A Dunpack_string_keys_compile_time.phpt7 var_dump(['a' => 'X', ...['a' => 'b']]);
8 var_dump([...['a' => 'b'], 'a' => 'X']);
22 string(1) "X"
/PHP-8.2/Zend/tests/traits/
H A Dbug74922c.phpt7 public $x = self::X;
10 public $x = self::X;
14 const X = 42;
/PHP-8.2/tests/classes/
H A Dconstants_basic_006.phpt7 const X = E::A;
20 var_dump(C::X, C::$a, D::X, D::$a, E::X, E::$a);
/PHP-8.2/Zend/tests/
H A Dbug41961.phpt5 X::test();
7 /** Class X is related to neither ParentClass nor ChildClass. */
8 class X {
11 $myChild->secret(); // bug - invokes X::secret() instead of ChildClass::secret()
H A Djump04.phpt5 $s = "X";
7 L1: if ($s != "X") {
13 $s .= "X";
/PHP-8.2/ext/json/tests/
H A Dbug77843.phpt6 class X implements JsonSerializable {
16 $arr = [new X()];
21 object(X)#1 (1) {

Completed in 27 milliseconds

12345678910>>...23