Best Way To Autoload Classes In PHP

前端 未结 6 664
陌清茗
陌清茗 2020-12-05 10:20

I\'m working on a project whereby I have the following file structure:

index.php
|---lib
|--|lib|type|class_name.php
|--|lib|size|example_class.php
         


        
6条回答
  •  臣服心动
    2020-12-05 10:59

    http://php.net/manual/de/function.spl-autoload-register.php

    spl_autoload_register(function ($class) {
        @require_once('lib/type/' . $class . '.php');   
        @require_once('lib/size/' . $class . '.php');
    });
    

提交回复
热议问题