Difference between revisions of "PHP/inheritance"
< PHP
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
{| class='wikitable sortable' | {| class='wikitable sortable' | ||
! arguments || B instanceof A || is_a(B,A,FALSE) || is_a(B,A,TRUE) || is_subclass_of(B,A,FALSE) || is_subclass_of(B,A,TRUE) | ! arguments || B instanceof A || is_a(B,A,FALSE) || is_a(B,A,TRUE) || is_subclass_of(B,A,FALSE) || is_subclass_of(B,A,TRUE) | ||
+ | |- | ||
+ | | colspan=6 | compare things to cA | ||
|- | |- | ||
| cA, cA | | cA, cA | ||
Line 34: | Line 36: | ||
| Y | | Y | ||
| Y | | Y | ||
+ | |- | ||
+ | | colspan=6 | compare things to iA | ||
|- | |- | ||
| cA, iA | | cA, iA | ||
Line 62: | Line 66: | ||
| Y | | Y | ||
| Y | | Y | ||
+ | |- | ||
+ | | colspan=6 | compare things to iB | ||
|- | |- | ||
| cB, iB | | cB, iB | ||
Line 76: | Line 82: | ||
| Y | | Y | ||
| Y | | Y | ||
+ | |- | ||
+ | | colspan=6 | compare things to tA | ||
|- | |- | ||
| cA, tA | | cA, tA | ||
Line 97: | Line 105: | ||
| - | | - | ||
| - | | - | ||
+ | |- | ||
+ | | colspan=6 | compare xD to things (should always be FALSE) | ||
|- | |- | ||
| cD, cA | | cD, cA | ||
Line 113: | Line 123: | ||
|} | |} | ||
− | Code for entities used in the test: | + | Code just for entities used in the test (full code is [[/code|here]]): |
<syntaxhighlight lang=php> | <syntaxhighlight lang=php> | ||
interface iA {} | interface iA {} | ||
Line 127: | Line 137: | ||
Conclusions: | Conclusions: | ||
− | * Nothing sees | + | * Nothing sees <tt>trait</tt>s as parents. |
* <tt>is_a(A,B,FALSE)</tt> is useless unless A is an object (always returns FALSE). | * <tt>is_a(A,B,FALSE)</tt> is useless unless A is an object (always returns FALSE). | ||
* <tt>is_subclass_of()</tt> is the same as <tt>is_a(A,B)</tt> except it will return FALSE if cA (aka $oA's class) is the same as cB. | * <tt>is_subclass_of()</tt> is the same as <tt>is_a(A,B)</tt> except it will return FALSE if cA (aka $oA's class) is the same as cB. |
Latest revision as of 13:28, 5 April 2024
About
PHP includes a few bits of functionality for checking whether an object or class inherits from another class or interface. The rules for this functionality are not always clearly explained.
Class Inheritance Functions Testing
Here's a truth-table from PHP 8.2.10:
arguments | B instanceof A | is_a(B,A,FALSE) | is_a(B,A,TRUE) | is_subclass_of(B,A,FALSE) | is_subclass_of(B,A,TRUE) |
---|---|---|---|---|---|
compare things to cA | |||||
cA, cA | - | - | Y | - | - |
cB, cA | - | - | Y | - | Y |
$oA, cA | Y | Y | Y | - | - |
$oB, cA | Y | Y | Y | Y | Y |
compare things to iA | |||||
cA, iA | - | - | Y | - | Y |
$oA, iA | Y | Y | Y | Y | Y |
cB, iA | - | - | Y | - | Y |
$oB, iA | Y | Y | Y | Y | Y |
compare things to iB | |||||
cB, iB | - | - | Y | - | Y |
$oB, iB | Y | Y | Y | Y | Y |
compare things to tA | |||||
cA, tA | - | - | - | - | - |
cB, tA | - | - | - | - | - |
$oB, tA | - | - | - | - | - |
compare xD to things (should always be FALSE) | |||||
cD, cA | - | - | - | - | - |
$oD, cA | - | - | - | - | - |
Code just for entities used in the test (full code is here):
interface iA {}
interface iB extends iA {} // interface B inherits from interface A
trait tA {}
class cA implements iA { use tA; } // class A inherits from iA and tA
$oA = new cA; // object of class A
class cB extends cA implements iB {} // class B inherits from cA and iB
$oB = new cB; // object of class B
class cD {} // unrelated class
$oD = new cD; // object of class D
Conclusions:
- Nothing sees traits as parents.
- is_a(A,B,FALSE) is useless unless A is an object (always returns FALSE).
- is_subclass_of() is the same as is_a(A,B) except it will return FALSE if cA (aka $oA's class) is the same as cB.