Codeigniter:从库类的核心文件夹中扩展自定义库

时间:2015-02-13 19:57:12

标签: php codeigniter

我在application / core文件夹中创建了一个名为MY_Library的核心库,我试图从应用程序/库中的库类扩展它,但不幸的是它无法找到该文件。

//application/core/My_Library.php
class My_Library{
    function __construct(){

    }

    /**
     * This is the generic function that calls php curl to make a query.
     * @param $url
     * @param array $data
     * @param string $type
     * @return mixed|string
     */
    public function callService($url,$data=array(),$type="get"){
        if (strtolower($type) == "get"){
            $url .= "?".http_build_query($data);
            $response = $this->doGet($url);
        }else if (strtolower($type) == "post"){
            $fields_string = http_build_query($data);
            $response = $this->doPost($url,$fields_string);
        }else{
            $response = "INVALID REQUEST";
        }

        return $response;
    }

}

In my application/libraries
class CakePixel extends MY_Library{
    function __construct(){
        parent::__construct();
    }
    public function fireCakePixel($cakeOfferId,$reqId,$transactionId){
        $cakeUrl = "http://oamtrk.com/p.ashx";
        $param = array(
            "o" =>  $cakeOfferId,
            "reqid" =>$reqId,
            "t"     => $transactionId
        );
        $response = $this->callService($cakeUrl,$param,"get");
    }
}

但我收到致命错误

PHP Fatal error:  Class 'MY_Library' not found in /application/libraries/cakeApi/pixel/CakePixel.php on line 10, referer: 

如果可能的话,如何在不使用require_once或包含类文件的情况下解决此问题。

2 个答案:

答案 0 :(得分:2)

您不应在core目录中加载库。 core目录用于核心类或用于" parent"您希望控制器扩展的控制器。您应该在Codeigniter的libraries目录中加载所有库,然后在控制器中,您可以像这样调用库中的函数:

$this->load->library('my_library');
$results = $this->my_library->callService($params);

答案 1 :(得分:0)

CI总是先查找系统库,如果它们存在,那么它在应用程序的核心或库文件夹中查找MY_,系统库目录中没有library.php,这就是你得到这个错误的原因。如果你想从核心或库目录自动加载第三方库,你可以使用下面的代码,你需要在config.php底部或顶部添加它

spl_autoload_register(function($class)
{
    if (strpos($class, 'CI_') !== 0)
    {
        if (file_exists($file = APPPATH . 'core/' . $class . '.php'))
        {
            include $file;
        }
        elseif (file_exists($file = APPPATH . 'libraries/' . $class . '.php'))
        {
            include $file;
        }
    }
});