如何在ZF1中的命名空间内使用zend模型类

时间:2016-12-19 21:54:16

标签: php zend-framework namespaces models

我在ZF1中的models文件夹之外创建了一个命名空间。现在我想在创建的命名空间中建立数据库连接,为此我想使用现有的模型类。

创建模型类的对象时,抛出错误"类未找到"。

以下是样本

模型文件:

class Application_Model_Fetchdetails extends Zend_Db_Table_Abstract
{
    public function getDetails(){
        // model code here to fetch the data from database
    }
}

命名空间文件:

namespace Product\Fetch;
class fetchData  {

    function __construct() {
        $this->Obj = new Application_Model_Fetchdetails();
    }

    /**
     * function will fetch the data
     */
    public function getData()
    {
        try {
           $data = $this->Obj->getDetails("col","id='A1'");
           return $data;
        } catch(Zend_Exception $e) {
            echo "error".$e->getMessage(); die;
        }
    }

在创建描述未找到类的对象时,在getData函数和构造函数中显示错误

1 个答案:

答案 0 :(得分:0)

因为您使用Product\Fetch命名了类,所以它会自动为您的模型命名空间。您需要添加以下内容:

namespace Product\Fetch;

use \Application_Model_Fetchdetails; // ADD THIS

class fetchData  {
   // ...
}