Home
last modified time | relevance | path

Searched refs:protected (Results 1 – 25 of 349) sorted by path

12345678910>>...14

/PHP-7.0/
H A DNEWS2754 . Fixed bug #70959 (ArrayObject unserialize does not restore protected
/PHP-7.0/Zend/
H A DZEND_CHANGES56 The Zend Engine 2.0 introduces private and protected member
66 protected $Bar = "Hello, Foo!\n";
67 protected $Foo = "Hello, Bar!\n";
77 protected $Foo;
104 * Private and protected methods.
106 The Zend Engine 2.0 introduces private and protected methods.
116 protected function aProtectedMethod() {
134 'public', 'protected' or 'private' should run without modifications.
560 protected $code = 0; // user defined exception code
561 protected $file; // source filename of exception
[all …]
/PHP-7.0/Zend/tests/
H A D011.phpt9 protected $pp3 = 3;
H A D030.phpt9 protected $test_3 = 2;
35 ["message":protected]=>
39 ["code":protected]=>
41 ["file":protected]=>
43 ["line":protected]=>
H A Daccess_modifiers_008.phpt2 Inconsistencies when accessing protected members
9 static protected function f() {return 'A::f()';}
12 static protected function f() {return 'B1::f()';}
21 Fatal error: Call to protected method B1::f() from context 'B2' in %s on line %d
H A Daccess_modifiers_009.phpt2 Inconsistencies when accessing protected members - 2
9 static protected function f() {return 'A::f()';}
12 static protected function f() {return 'B1::f()';}
26 Fatal error: Call to protected method B1::f() from context 'B2' in %s on line %d
H A Daccess_modifiers_011.phpt2 __call() for private/protected methods
8 protected $var2 = 'var2 value';
14 protected function func2()
H A Daccess_modifiers_012.phpt6 protected function prot() { }
H A Dbug21888.phpt2 Bug #21888 (protected property and protected method of the same name)
11 protected $prot = "protected property\n";
13 protected function prot() {
14 print "protected method\n";
35 protected method
36 protected property
H A Dbug22725.phpt2 Bug #22725 (A derived class can call a parent's protected method that calls a private method)
12 protected function aProtectedMethod() {
H A Dbug26010.phpt2 Bug #26010 (private / protected variables get exposed by get_object_vars())
7 protected $protected = 'protected';
H A Dbug27798.phpt2 Bug #27798 (private / protected variables not exposed by get_object_vars() inside class)
9 protected $Bar = 2;
H A Dbug29210.phpt2 Bug #29210 (Function is_callable does not support private and protected methods)
9 protected function test_func2() {
15 static protected function test_func4() {
H A Dbug29689.phpt2 Bug #29689 (default value of protected member overrides default value of private)
16 protected $foo = 'bar';
26 protected $foo = 'baz';
27 protected $foo2 = 'baz2';
39 protected $foo = 'baz2';
40 protected $foo2 = 'baz22';
H A Dbug30451.phpt8 protected static $property = TRUE;
10 protected static function method() {
H A Dbug32296.phpt7 abstract protected function unfold();
12 protected final function unfold(){}
H A Dbug33257.phpt8 protected static $arr = array("a", "b", "c");
H A Dbug35393.phpt2 Bug #35393 (changing static protected members from outside the class)
9 static protected $type = array(0=>'main');
H A Dbug37212.phpt2 Bug #37212 (Access to protected property of common base class)
8 protected $value;
15 protected function getValue()
44 ["value":protected]=>
48 ["value":protected]=>
52 ["value":protected]=>
H A Dbug37632.phpt8 protected function test()
25 protected function test()
36 static protected function test()
53 static protected function test()
61 /* Right now Ctor's cannot be made protected when defined in a ctor. That is
72 protected function __construct()
89 protected function __construct()
101 protected function __construct()
118 protected function __construct()
135 Fatal error: Uncaught Error: Call to protected C4::__construct() from context 'B4' in %sbug37632.ph…
/PHP-7.0/Zend/tests/anon/
H A D004.phpt6 protected $data;
H A D005.phpt6 protected $data;
15 /* this grants you access to protected methods and members */
33 /* null because no inheritance, so no access to protected member */
H A D011.phpt6 class_alias(get_class(new class { protected $foo = 1; }), "AnonBase");
/PHP-7.0/Zend/tests/assert/
H A Dbug70208.phpt11 protected $prop = 1;
H A Dexpect_015.phpt29 protected $c;
67 final protected function f2() {
103 ops as protected x;
169 protected $c;
208 protected final function f2() {
252 ops as protected x;

Completed in 78 milliseconds

12345678910>>...14