deve durumda php __ autoload () fonksiyonu ile harf dönüşüm altını

2 Cevap php

Hey Guys, PHP manual suggests to autoload classes like

function __autoload($class_name){
 require_once("some_dir/".$class_name.".php");
}

ve bu appoach gibi dosya my_dir / FooClass.php kaydedilen sınıf FooClass yüklemeye çalışıyor

class FooClass{
  //some implementation
}

here is my question: how can I make it possible to use _autoload() function and access FooClass saved in the file my_dir/foo_class.php? thanks for your help.

[Note: 1. the CamelCase and under_score notations on the files 2. the manual link is : http://www.php.net/manual/en/language.oop5.autoload.php%5D.

2 Cevap

Böyle sınıf adını dönüştürmek ...

function __autoload($class_name){
    $name = strtolower(preg_replace('/([a-z])([A-Z])/', '$1_$2', $class_name));
    require_once("some_dir/".$name.".php");
}

Bu denenmemiş ama sınıf adını dönüştürmek için önce benzer bir şey kullandım. Ben benim işlevi de O (n) çalışır ve yavaş backreferencing dayanmaz ekleyebilirsiniz.

// lowercase first letter
$class_name[0] = strtolower($class_name[0]);

$len = strlen($class_name);
for ($i = 0; $i < $len; ++$i) {
    // see if we have an uppercase character and replace
    if (ord($class_name[$i]) > 64 && ord($class_name[$i]) < 91) {
        $class_name[$i] = '_' . strtolower($class_name[$i]);
        // increase length of class and position
        ++$len;
        ++$i;
    }
}

return $class_name;