PHP Classes

File: src/autoload.php

Recommend this page to a friend!
  Classes of Miraz Mac   Bangla String   src/autoload.php   Download  
File: src/autoload.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Bangla String
Manipulate strings in the Bengali language
Author: By
Last change:
Date: 6 years ago
Size: 1,423 bytes
 

Contents

Class file image Download
<?php
/**
 * You only need this file if you are not using composer.
 * Why are you not using composer?
 *
 * https://getcomposer.org/
 */

if (version_compare(PHP_VERSION, '5.4.0', '<')) {
    throw new
Exception('BanglaString requires PHP version 5.4 or higher.');
}

/**
 * Register the autoloader for the Facebook SDK classes.
 *
 * Based off the official PSR-4 autoloader example found here:
 * https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-4-autoloader-examples.md
 *
 * @param string $class The fully-qualified class name.
 *
 * @return void
 */
spl_autoload_register(function ($class) {
   
// project-specific namespace prefix
   
$prefix = 'MirazMac\\BanglaString\\';

   
// base directory for the namespace prefix
   
$baseDir = __DIR__ . '/';

   
// does the class use the namespace prefix?
   
$len = strlen($prefix);
    if (
strncmp($prefix, $class, $len) !== 0) {
       
// no, move to the next registered autoloader
       
return;
    }

   
// get the relative class name
   
$relativeClass = substr($class, $len);

   
// replace the namespace prefix with the base directory, replace namespace
    // separators with directory separators in the relative class name, append
    // with .php
   
$file = rtrim($baseDir, '/') . '/' . str_replace('\\', '/', $relativeClass) . '.php';

   
// if the file exists, require it
   
if (file_exists($file)) {
        require
$file;
    }
});