空文件问题

时间:2009-12-21 18:30:52

标签: php mysql pdo

REWROTE:已解决

你好,

我目前使用数据库,一堆控制器,视图和模型类来处理一个简单的应用程序。

我编码控制器并直接插入数据库连接

E.g。 每个控制器方法都有自己的PDO来连接到特定的数据库+表。

我重构了这个,因为每个控制器有太多活动的PDO,所以我开始编写模型类。

简短信息:当调用控制器时,模型类一旦被控制器访问。 一旦构建了模型对象,它就可以通过整个控制器获得,并且您可以将自定义请求传递给它。 例如。 getUserById =>从当前控制器表中获取ID为“xy”的用户。

现在我终于完成了模型类并将我的PDO类添加到模型中: 每次我想访问我的任何控制器时,我的FireFox都会问我在哪里保护空的“test.php”(test.php是我的索引文件)。

重启Apache2 / PHP / MySQL不起作用,如果我删除了我的代码的某一部分,没有错误,但这一部分是必不可少的。 ;)

model.php

class Model extends db_pdo_adapter{
    public function __construct($name)
    {
        $name = strtolower($name);
        $this->dbh = parent::connect(Model::ATTR_HOST, Model::ATTR_USR, Model::ATTR_PASSWD, Model::ATTR_DB);
        $this->name = $name.'s';
        //$this->ATTR_TBL = $this->name;

    }

    public function __call($name,$values)
    {
        $string = preg_replace('/^get/','',$name);
        $string = strtolower($string);
        $by = preg_split('/by/',$string);
        $by = strtolower($by[1]);
        return $this->get($string, $by, $values); // when I remove this part no empty file is served.
    }

    public function get($item, $by, $conditions) // single item if is_no_array
    {
        if($item = preg_replace('/$s/','',$this->name))
        {
            $item = '*';
        }
        //if(count($conditions) <= 1)
        //{
            $query = 'SELECT ' . $item . ' FROM ' . $this->name . ' WHERE ' . $by . ' = :' . $by . '';
            $pname = ':'.$by;
        //}

        $this->dbh->getStatement($query);
        $this->dbh->bindParam($pname,$conditions[0]); // ->dbh-> also was missing
        $this->dbh->exec();
        return ($this->dbh->fetchAll());

    }
}

test.php的摘录

 header('Content-Type: text/html;');
$time_start = microtime(true);



 include_once('db/model.php');
 //include_once('village.php');
 //include_once('player.php');
 include_once('building.php');

//$village = Village::getVillage('12');
//$player = Player::getPlayer('423');
//$data = array('name' => 'peter','password' => 'nopasswd','email' => 'peter@hasnomail.org');
//$player->newPlayer($data);
//print_r($village->attr);
//print_r($player->playerObj);
//include('interface.phtml');
//var_dump($_SERVER);
//print_r($village);
//print_r($player);
echo '<br />';
var_dump(Building::getBuilding('321'));

building.php(控制器)的摘录

class Building{
    private function __construct($id,$village = NULL)
    {
        $this->model = new Model(__CLASS__);
        $model = $this->model;

        $this->buildingObj = $model->getBuildingById($id);
    }

    public function getBuilding($id,$village = NULL)
    {
        return (new Building($id));
    }
}

1 个答案:

答案 0 :(得分:1)

我发现了问题:

我必须使用PDO适配器扩展Model类,我不知道为什么,但这就是问题所在。