gpt4 book ai didi

php - Zend php 在查询中设置不同

转载 作者:行者123 更新时间:2023-11-29 11:57:11 27 4
gpt4 key购买 nike

如何停止使用 zend 查询显示重复值,请建议

 public function getProductCategoryById($id) {
$where = array(
"product_category_id = ?" => $id
);
$result = $this->_db_table->fetchRow($where);
// print_r($result);die;
if (!$result) {

return false;
}
$product_category = new Application_Model_ProductCategories($result);
return $product_category;
}

我是 zend 新用户,我很困惑如何在 zend 中使用不同的值,请查看我的代码并进行更改

请帮忙

最佳答案

使用不同的

$select = $this->select()
->distinct()
->where('product_category_id = ?', $id);

关于php - Zend php 在查询中设置不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33016524/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com