Home
last modified time | relevance | path

Searched refs:parent (Results 1 – 25 of 357) sorted by path

12345678910>>...15

/PHP-5.5/
H A D.gdbinit433 if $ce->parent != 0
434 printf " extends %s", $ce->parent->name
447 set $ce = $ce->parent
H A DCODING_STANDARDS109 2. If they are part of a "parent set" of functions, that parent should
111 to the parent program or function family. This should be in the form
155 The class name should be prefixed with the name of the 'parent set' (e.g.
290 the parent function. For ease of reference, user-functions with
H A DNEWS1897 . Fixed bug #60833 (self, parent, static behave inconsistently
3857 parent::__constr crashed PHP). (Hannes)
5176 parent dir). (Etienne)
5586 parent class). (Felipe)
6115 - Fixed bug #48215 (Calling a method with the same name as the parent class
6416 - Fixed bug #47801 (__call() accessed via parent:: operator is provided
7260 from a parent class). (Dmitry)
7702 parent is killed). (Dmitry)
8069 - Fixed bug #37627 (session save_path check checks the parent directory).
8680 - Fixed bug #37138 (__autoload tries to load callback'ed self and parent).
[all …]
H A DUPGRADING30 - self, parent & static keywords now are always case-insensitive (see bug
/PHP-5.5/Zend/
H A DZEND_CHANGES325 replicate the parent object you want to create a new instance of
387 common to call parent constructors from derived classes, the way
391 parent changes as well, and the code in the derived class that
392 calls the parent constructor has to be modified.
408 parent::__construct();
458 Like constructors, parent destructors will not be called
459 implicitly by the engine. In order to run a parent destructor,
460 one would have to explicitly call parent::__destruct() in the
1126 You can now, for example, override a parent function with a
1127 child function, and call the parent function from it.
[all …]
/PHP-5.5/Zend/tests/
H A Dbug22725.phpt2 Bug #22725 (A derived class can call a parent's protected method that calls a private method)
H A Dbug27798.phpt25 parent::__construct();
H A Dbug29689.phpt20 parent::printFoo();
33 parent::printFoo();
H A Dbug30161.phpt17 parent::__construct();
H A Dbug30162.phpt18 parent::__construct();
H A Dbug30451.phpt21 var_dump(parent::method());
24 var_dump(parent::$property);
H A Dbug30702.phpt19 public $c6=parent::C1;
H A Dbug30828.phpt33 parent::__construct();
37 parent::foo();
41 parent::bar();
H A Dbug32290.phpt64 return call_user_func_array(array("parent", "doSomethingParent"), array($i));
72 return call_user_func_array(array($this, "parent::doSomethingParentThis"), array($i));
H A Dbug36006.phpt21 parent::__destruct(); /* segfault here */
H A Dbug37138.phpt2 Bug #37138 (__autoload tries to load callback'ed self and parent)
11 public static function g () {call_user_func (array ('parent', 'e'));}
H A Dbug39297.phpt10 public $parent;
23 $value->parent = $this;
H A Dbug40784.phpt12 parent::__construct();
13 parent::__constrUct();
H A Dbug42211.phpt2 Bug #42211 (property_exists() fails to find protected properties from a parent class)
H A Dbug42937.phpt2 Bug #42937 (__call() method not invoked when methods are called on parent from child class)
20 parent::test2();
H A Dbug43332_1.phpt2 Bug #43332.1 (self and parent as type hint in namespace)
H A Dbug43332_2.phpt2 Bug #43332.2 (self and parent as type hint in namespace)
H A Dbug44141.phpt2 Bug #44141 (private parent constructor callable through static function)
H A Dbug45862.phpt22 echo "\n From parent scope\n";
23 $parent = new Ancestor();
24 $parent->test();
32 From parent scope
H A Dbug47801.phpt2 Bug #47801 (__call() accessed via parent:: operator is provided incorrect method name)
18 parent::getFoo();

Completed in 57 milliseconds

12345678910>>...15