OOP: Auto Load

Prince

[ Verified Seller ]
Staff member
Trusted Seller
Joined
11 yrs. 6 mth. 27 days
Messages
5,381
Reaction score
18,380
Age
45
Wallet
11,590$
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

Code:
Please, Log in or Register to view codes content!

How it Works ?
load.php
load.php
Code:
Please, Log in or Register to view codes content!
myclass.php
Code:
Please, Log in or Register to view codes content!

Conclusion
More needs to check if the file has included especially when you have a lot of files to include.
 
Top Bottom