“PHP Autoloader” Kode Jawaban

PHP Autoloader

Example #1 Autoload example

This example attempts to load the classes MyClass1 and MyClass2 from the files MyClass1.php and MyClass2.php respectively.
<?php
spl_autoload_register(function ($class_name) {
    include $class_name . '.php';
});

$obj  = new MyClass1();
$obj2 = new MyClass2(); 
?>

Majhi Bhai

autoload.php

The introduction of spl_autoload_register() gave programmers 
the ability to create an autoload chain, 
a series of functions that can be called to try and load a class or interface. 

For example:

<?php
function autoloadModel($className) {
    $filename = "models/" . $className . ".php";
    if (is_readable($filename)) {
        require $filename;
    }
}

function autoloadController($className) {
    $filename = "controllers/" . $className . ".php";
    if (is_readable($filename)) {
        require $filename;
    }
}

spl_autoload_register("autoloadModel");
spl_autoload_register("autoloadController");
Enrybi

Jawaban yang mirip dengan “PHP Autoloader”

Pertanyaan yang mirip dengan “PHP Autoloader”

Lebih banyak jawaban terkait untuk “PHP Autoloader” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya