Home
last modified time | relevance | path

Searched refs:public (Results 101 – 125 of 2139) sorted by relevance

12345678910>>...86

/PHP-8.0/ext/reflection/tests/
H A Dbug29986.phpt23 Constant [ public bool BOOLEAN_CONSTANT ] { 1 }
24 Constant [ public null NULL_CONSTANT ] { }
25 Constant [ public string STRING_CONSTANT ] { This is a string }
26 Constant [ public int INTEGER_CONSTANT ] { 1000 }
27 Constant [ public float FLOAT_CONSTANT ] { 3.14159265 }
/PHP-8.0/Zend/tests/
H A Ddereference_005.phpt10 public function __construct() {
17 public function offsetSet($offset, $value) {
20 public function offsetExists($offset) {
23 public function offsetUnset($offset) {
26 public function offsetGet($offset) {
H A Ddereference_003.phpt9 public $x = 2;
10 public function a() {
15 public function b() {
18 public function c() {
24 public function d() {
H A Dexception_delayed_message.phpt7 public $message;
8 public $messageCallback;
10 public function __construct() {
18 public function __construct(&$message, &$messageCallback)
24 public function __toString(): string
H A Dbug63734.phpt8 public $ref;
9 public $ary;
10 public function __construct() {
14 public function __destruct() {
H A Dbug75420.16.phpt6 public function offsetExists($x) { }
7 public function offsetGet($x) { }
8 public function offsetSet($x, $y) { $GLOBALS["obj"] = 24; var_dump($this); }
9 public function offsetUnset($x) { }
H A Dctor_promotion_untyped_default.phpt7 public function __construct(
8 public $untyped = 1,
9 public int $typed = 2,
14 public function __construct() {
H A Dbug75420.15.phpt6 public function offsetExists($x) { }
7 public function offsetGet($x) { }
8 public function offsetSet($x, $y) { $GLOBALS["name"] = 24; var_dump($x); }
9 public function offsetUnset($x) { }
H A Dbug60139.phpt8 public $x;
10 public function __construct() {
16 public $x;
18 public function __construct() {
H A Dbug75420.13.phpt6 public function offsetExists($x) { $GLOBALS["obj"] = 24; return true; }
7 public function offsetGet($x) { var_dump($x); return 42; }
8 public function offsetSet($x, $y) { }
9 public function offsetUnset($x) { }
H A Dbug75420.9.phpt6 public function offsetExists($x) { $GLOBALS["name"] = 24; return true; }
7 public function offsetGet($x) { var_dump($x); return 42; }
8 public function offsetSet($x, $y) { }
9 public function offsetUnset($x) { }
H A Dctor_promotion_basic.phpt7 public function __construct(public int $x, public int $y, public int $z) {}
H A Dget_class_methods_002.phpt12 public function a() { }
13 public function b() { }
15 public function __construct() {
20 public function __destruct() { }
/PHP-8.0/Zend/tests/type_declarations/
H A Dtyped_properties_059.phpt6 public int $a1;
7 public ?int $b1;
12 public int $a2;
13 public ?int $b2;
H A Dtyped_properties_033.phpt6 public int $foo = 1;
7 public int $bar = 3;
8 public int $baz = 5;
9 public int $qux = PHP_INT_MAX;
11 public function &fetch() {
/PHP-8.0/ext/standard/tests/serialize/
H A D__serialize_005.phpt8 public function __construct(array $data) {
11 public function __serialize() {
14 public function __unserialize(array $data) {
21 public function __construct(array $data, array $data2) {
25 public function __serialize() {
28 public function __unserialize(array $payload) {
H A Dtyped_property_refs.phpt7 public int $a;
8 public $b;
12 public $a;
13 public int $b;
17 public $a;
18 public int $b;
22 public int $a;
23 public string $b;
27 public int $a;
28 public float $b;
H A Dbug65806.phpt7 public $attrA;
8 public $attrB;
11 public $attrC;
12 public $attrD;
18 public function __construct($obj)
23 public function get()
27 public function __sleep()
34 public function __wakeup()
/PHP-8.0/Zend/tests/closures/
H A Dclosure_from_callable_basic.phpt8 echo 'Access public static function';
12 echo 'Access public static function with different case';
16 echo 'Access public static function with colon scheme';
20 echo 'Access public instance method of object';
40 echo 'Class with public invocable';
100 Access public static function OK
101 Access public static function with different case OK
102 Access public static function with colon scheme OK
103 Access public instance method of object OK
108 Class with public invocable OK
[all …]
/PHP-8.0/ext/opcache/tests/opt/
H A Dprop_types.phpt15 public bool $public;
19 public function inTest() {
20 var_dump($this->public, $this->protected, $this->private);
23 public function inTestWithTest2(Test2 $test2) {
24 var_dump($test2->public, $test2->protected, $test2->private);
31 public function inTest2() {
32 var_dump($this->public, $this->protected, $this->private);
37 var_dump($test->public, $test->protected, $test->private);
63 0002 #2.T1 [bool] = FETCH_OBJ_R #1.CV0($test) [object (instanceof Test)] string("public")
81 0001 #0.T0 [bool] = FETCH_OBJ_R THIS string("public")
[all …]
/PHP-8.0/ext/soap/tests/bugs/
H A Dbug36226.phpt50 public $audienceMemberId;
51 public $timestamp;
52 public $smokeStatus;
53 public $callInitiator;
65 public $timestamp;
74 public $version;
75 public $activityId;
76 public $messageId;
77 public $source;
78 public $logOnEvent;
[all …]
/PHP-8.0/ext/opcache/tests/jit/
H A Dbug80861.phpt17 public $column = null;
18 public $left = null;
19 public $right = null;
20 public $up = null;
21 public $down = null;
23 public static function joinLR(Node $a, Node $b): void
29 public static function joinDU(Node $a, Node $b): void
39 public function __construct()
50 public $head = null;
52 public function __construct()
[all …]
/PHP-8.0/tests/classes/
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;};
/PHP-8.0/ext/spl/tests/
H A Dbug69264.phpt6 public function __debugInfo() {
12 public function __debugInfo() {
18 public function __debugInfo() {
24 public function __debugInfo() {
30 public function __debugInfo() {
36 public function __debugInfo() {
42 public function __debugInfo() {
48 public function __debugInfo() {
H A Dbug41691.phpt7 public function __construct($dummy, $flags) {
10 public $a;
11 public $b;
12 public $c;

Completed in 47 milliseconds

12345678910>>...86