本文整理汇总了PHP中ArticleModel::getError方法的典型用法代码示例。如果您正苦于以下问题:PHP ArticleModel::getError方法的具体用法?PHP ArticleModel::getError怎么用?PHP ArticleModel::getError使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ArticleModel
的用法示例。
在下文中一共展示了ArticleModel::getError方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: del
public function del()
{
$id = I('id', NULL);
if (!empty($id)) {
if (is_array($id)) {
$where = 'id in (' . implode(',', $id) . ')';
} else {
$where = 'id = ' . $id;
}
$article = new ArticleModel();
if (false !== $article->where($where)->delete()) {
$this->message('删除成功', __URL__ . '/index');
} else {
$this->message('删除失败:' . $article->getError(), __URL__ . '/index');
}
} else {
$this->message('请选择删除对象', __URL__ . '/index');
}
}
示例2: update
/**
* 文章编辑更新页面
*/
function update()
{
$article = new ArticleModel();
if (!!($data = $article->create())) {
if (!empty($data['id'])) {
if (false !== $article->save()) {
$this->assign('jumpUrl', __URL__ . '/index');
$this->success('更新成功');
} else {
$this->error('更新失败:' . $article->getDbError());
}
} else {
$this->error('请选择编辑用户');
}
} else {
$this->error('更新失败:( ' . $article->getError() . ' )');
}
}