PHP Classes

File: application/third_party/dompdf/lib/php-css-parser/tests/bootstrap.php

Recommend this page to a friend!
  Classes of Muhammad Yahya   PPDB Prediksi   application/third_party/dompdf/lib/php-css-parser/tests/bootstrap.php   Download  
File: application/third_party/dompdf/lib/php-css-parser/tests/bootstrap.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PPDB Prediksi
Application to manage schools in Indonesia
Author: By
Last change:
Date: 2 years ago
Size: 195 bytes
 

Contents

Class file image Download
<?php

spl_autoload_register
(function($class)
{
   
$file = __DIR__.'/../lib/'.strtr($class, '\\', '/').'.php';
    if (
file_exists($file)) {
        require
$file;
        return
true;
    }
});