如何在php中的另一个类中使用分配给另一个类的属性的类的实例

时间:2012-12-28 19:03:31

标签: php

我正在用PHP创建一个框架。 我在library / core.php中有一个导入函数。

我可以使用这样的功能:

$core->import("someclass");

这是功能:

public function import()
    {
        $import_resources = func_get_args();

        $check_directories = array("library", "template", "view", "action", "errors");

        $instances = array();

        foreach($import_resources as $resource)
        {
            for($i = 0; $i <= count($check_directories) - 1; $i++)
            {
                if(file_exists($this->appRoot() . $check_directories[$i] . "/" . $resource . ".php"))
                {

                    $classes = get_declared_classes();
                    include ($check_directories[$i] . "/" . $resource . ".php");
                    $included_classes = array_diff(get_declared_classes(), $classes);
                    $last_class = end($included_classes);

                    $last_class_lowercase = strtolower($last_class);

                    $this->$last_class_lowercase = new $last_class(); 
                    // create an instance of the included class and attach it to the Core Class

                }

                else
                {

                }   
            }
        }

    }

所以在其他课程中,我可以像这样使用它:

$core->import("view");
$core->view->get();

这一点的全部意义在于,当扩展时,使包含的类在另一个类中可用。

class Someclass extends Core
{
    public function somefunc()
    {
        $this->view->get(); // This does not work. 
    }
}

我怎么能让它像这样工作?这是框架的一个非常重要的部分,因为它是如何工作的。我认为它在CodeIgniter等流行框架中的工作方式也类似。

我试图使用parent::view->get(),但我想我并不完全理解它。

我希望我能弄清楚这一点,因为它让我失去了工作。 提前谢谢。

1 个答案:

答案 0 :(得分:1)

你想要做的是使用“魔术方法”,这个特殊的方法(__ get()这会获得无法从外部访问的属性)。您将希望像这样使用它:

<?php
// --- Begin Importer.php --------------------
class Importer{
    protected $classes = array();

    public function __get($method_name){
        if(array_key_exists($method_name, $this->classes)){
            return $this->classes[$method_name];
        }
    }

    public function import($class_name){
        // Do this or use an auto loader
        require_once __DIR__ . "/../classes/$class_name";
        $this->classes[$class_name] = new $class_name();
    }
}
// --- End Importer.php ---------------------


// --- Begin MyClass.php --------------------
class MyClass{
    public function get(){
        return "hello";
    }
}
// --- End MyClass.php ----------------------


// --- Where ever you call Importer ---------
$importer = new Importer();
$importer->import("MyClass");


echo $importer->MyClass->get();