Posts by Iago Effting • 1 point
1 post
-
0
votes4
answers2802
viewsA: How to import classes from your subclasses in PHP?
To import a class without using require or include it is recommended to use PSR-0 (Link) a standard many adhered to (even though it was discussed to use the PSR-4 instead of the PSR-0). It can be…