PHP Classes

File: core/load.php

Recommend this page to a friend!
  Classes of No name   RT PHP   core/load.php   Download  
File: core/load.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: RT PHP
Library of general purpose PHP classes
Author: By
Last change:
Date: 7 years ago
Size: 572 bytes
 

Contents

Class file image Download
<?php

/**
 * @link https://github.com/rogertiongdev/RTphp RTphp GitHub project
 * @license https://rogertiongdev.github.io/MIT-License/
 */

namespace RTdev\RTphp;

/**
 * RTphp classes loader.<br>
 * All the class is independent.
 *
 * @version 0.1
 * @author Roger Tiong RTdev
 */

/**
 * Load all the classes
 */
function RTphpLoad() {

   
$lib = array(
       
'/src/RTmysqli.php',
       
'/src/RTpassword.php',
       
'/src/RTutil.php',
       
'/src/RTslugify.php'
   
);

    foreach (
$lib as $class) {

        require_once
dirname(__FILE__) . $class;
    }
}