Home
last modified time | relevance | path

Searched refs:const (Results 126 – 150 of 481) sorted by relevance

12345678910>>...20

/PHP-8.2/Zend/tests/
H A Dgh10709.phpt6 class B { const C = A::C . "B"; }
9 class A { const C = "A"; }
H A Dbug63976.phpt7 const TABLE = "foo";
13 const TABLE = "bar";
H A Dconstant_expressions_invalid_offset_type_error.phpt6 const C1 = 1; // force dynamic evaluation
7 const C2 = [C1, [] => 1];
H A Dbug70997.phpt6 const TEST = false;
15 const TEST = true;
H A Derrmsg_025.phpt7 const FOO = 10;
11 const FOO = 10;
H A Dgh7792_3.phpt7 const FOO = 'foo';
11 const FOO = 'foo';
H A Dlsb_014.phpt2 ZE2 Late Static Binding access to static::const through defined() and get_constant()
16 const ok = "ok";
H A Dns_039.phpt14 const A = "ok";
15 const B = A;
H A Dbug41633_3.phpt6 const A = Foo::B;
7 const B = Foo::A;
H A Dconstant_expressions_self_referencing_array.phpt6 const FOO = [self::BAR];
7 const BAR = [self::FOO];
/PHP-8.2/tests/classes/
H A Dbug29446.phpt7 const TEST_CONST = 'test';
8 const TEST_CONST = 'test1';
H A Dconstants_visibility_error_003.phpt7 public const publicConst = 0;
11 protected const publicConst = 1;
H A Dconstants_visibility_error_004.phpt7 protected const protectedConst = 0;
11 private const protectedConst = 1;
/PHP-8.2/ext/reflection/tests/
H A DReflectionClass_export_array_bug72222.phpt6 const A = 8;
7 const B = ["a", "b"];
H A DReflectionClassConstant_isEnumCase.phpt8 const Baz = self::Bar;
12 const Quux = 0;
H A Dgh8080.phpt6 const LIST = [
9 private const TEST = 'test';
/PHP-8.2/Zend/tests/varSyntax/
H A Dclass_constant_static_deref.phpt7 const NAME = 'Test2';
11 const FOO = 42;
/PHP-8.2/Zend/tests/constants/final_constants/
H A Dfinal_const12.phpt8 const C = 1;
13 const C = 2;
H A Dfinal_const8.phpt8 const C = 1;
13 const C = 1;
H A Dfinal_const11.phpt8 const C = 1;
13 const C = 1;
/PHP-8.2/ext/gd/tests/
H A Dimagecopyresampled_variation1.phpt8 const EXP_RED = 66;
9 const EXP_GREEN = 66;
10 const EXP_BLUE = 133;
11 const EXP_ALPHA = 32;
/PHP-8.2/ext/tokenizer/tests/
H A Dtoken_get_all_variation10.phpt9 * integer const - T_LNUMBER(305)
10 * float/double/real const - T_DNUMBER(306)
12 * bool const (no tokens specified) - T_UNKNOWN(307)
13 * null const (no tokens specified) - T_UNKNOWN(307)
22 // int const
25 // float const
28 // string const
31 // bool const
35 // null const
/PHP-8.2/Zend/tests/prop_const_expr/
H A Dlhs_non_object.phpt6 const A_prop = (42)->prop;
9 const A_prop_nullsafe = (42)?->prop;
H A Drhs_prop_not_found.phpt10 const A_prop = A::B->prop;
13 const A_prop_nullsafe = A::B?->prop;
/PHP-8.2/Zend/tests/enum/
H A Dunserialize-const.phpt2 Enum unserialize const
8 const Baz = Foo::Bar;

Completed in 32 milliseconds

12345678910>>...20