我创建了一个函数来获取像这样的表中的最后一个字段的值
private function _getLastPosition ($menuId) { $select = $this -> getDbTable() -> select(); $select -> where("menu_id = ?",$menuId) -> order('position DESC'); $row = $this -> getDbTable() -> fetchRow($select); if($row) { return $row -> position; } else { return 0; } }
当我跑的时候,我明白了
Message: sqlSTATE[HY093]: Invalid parameter number: no parameters were bound
请帮我解决这个问题
它通常意味着$menuId为空/ NULL.确保$menuId变量具有正确的值,然后在$select中使用它:
原文链接:https://www.f2er.com/php/134346.html您可以在函数开头添加以下行,然后在$select-> where()调用中使用$menuId:
if(empty($menuId)) return 0;
如果没有提供$menuId,这将返回0.如果您想在这种情况下抛出错误(异常),您可以执行以下操作:
if(empty($menuId)) throw new Exception("No Menu ID Provided");
您的完整功能如下所示:
private function _getLastPosition ($menuId) { if(empty($menuId)) throw new Exception("No Menu ID Provided"); $select = $this -> getDbTable() -> select(); $select -> where("menu_id = ?",$menuId) -> order('position DESC'); $row = $this -> getDbTable() -> fetchRow($select); if($row) { return $row -> position; } else { return 0; } }