PHP Classes

File: Tests/bootstrap.php

Recommend this page to a friend!
  Classes of Dariusz   PHP Digest Authentication   Tests/bootstrap.php   Download  
File: Tests/bootstrap.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Digest Authentication
Implements HTTP Digest Authentication
Author: By
Last change:
Date: 4 years ago
Size: 154 bytes
 

Contents

Class file image Download
<?php

function loader($class)
{
   
$file = $class.'.php';
    if (
file_exists($file)) {
        require
$file;
    }
}
spl_autoload_register('loader');