我有这样的阵列
$conditions = array("Post.title" => "This is a post");
并在此方法中使用$conditions数组。
$this->Post->find('first', array('conditions' => $conditions));
我想把$conditions数组转换成普通的sql查询。
我要用
$this->Post->query($converted_query);
而不是
$this->Post->find('first', array('conditions' => $conditions));
最佳答案
$null=null;
echo $this->getDataSource()->generateAssociationQuery($this, NULL, NULL, NULL, NULL, $query_array, false,$null);
关于php - 如何从Cake查询数组中获取普通的SQL查询?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12119154/