- Joined
- 11 yrs. 6 mth. 27 days
- Messages
- 5,381
- Reaction score
- 18,380
- Age
- 45
- Wallet
- 11,590$
- [email protected]
Auto Load
What is auto load in php ?
An auto load as its name suggests it is something that you do not need to call. More precisely a class.
Auto load detects class are instantiated and it sends a parameter.
With which it works ?
1. With class that are not included.
2. With files that have the same class name.
Ex:
test.php or test.class.php
How it Works ?
load.php
load.php
myclass.php
Conclusion
More needs to check if the file has included especially when you have a lot of files to include.
What is auto load in php ?
An auto load as its name suggests it is something that you do not need to call. More precisely a class.
Auto load detects class are instantiated and it sends a parameter.
With which it works ?
1. With class that are not included.
2. With files that have the same class name.
Ex:
test.php or test.class.php
How it Works ?
load.php
load.php
myclass.php
Conclusion
More needs to check if the file has included especially when you have a lot of files to include.