如何扩展Silex Doctrine MySQL查询库?

时间:2017-04-05 05:58:25

标签: php doctrine silex extends

正如标题所说,我正在使用Silex和Doctrine。虽然,我想使用我自己的一些简单类来扩展Doctrine。但我不知道在'延伸......后'要放什么。这是我如何扩展学说的一个例子:

public function action($action, $table, $where = array()) {
    if(count($where) === 3) {
        $operators = array('=', '>', '<', '>=', '<=');

        $field = $where[0];
        $operator = $where[1];
        $value = $where[2];

        if(in_array($operator, $operators)) {
            $sql = "{$action} FROM {$table} WHERE {$field} {$operator} ?";

            if(!$this->query($sql, array($value))->error()) {
                return $this;
            }
        }

    }

    return false;
}

这一个:

public function insert($table, $fields = array()) {
    $keys = array_keys($fields);
    $values = null;
    $x = 1;

    foreach($fields as $field) {
        $values .= '?';
        if ($x < count($fields)) {
            $values .= ', ';
        }
        $x++;
    }

    $sql = "INSERT INTO {$table} (`" . implode('`, `', $keys) . "`) VALUES ({$values})";

    if(!$this->query($sql, $fields)->error()) {
        return true;
    }

    return false;
}

因此,创建一个扩展Doctrine的外部类。我的班级会是什么样子:

  

类DB扩展... {

     

// blablabla

     

}

1 个答案:

答案 0 :(得分:1)

您需要创建自定义实体存储库(Symfony example is crystal clear on this)您可以看到必须扩展Doctrine\ORM\EntityRepository

在自定义实体存储库中,您需要使用以下方法之一创建方法:

你需要开始考虑ORM方式,而不是旧的concatenate-strings-to-form-my-insecure-sql方式;)