Before PHP5, if each PHP framework wanted to implement automatic loading of classes, they usually implemented a directory traversal according to a certain agreement. Automatically load classes or functions of all files that meet the agreed rules. Of course, the object-oriented support before PHP5 was not very good, and the use of classes was not as frequent as it is now. Let’s discuss this in detail.
PHP class automatic loading method
?
2 3 11 12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|