Home >Backend Development >PHP Tutorial >为什么 小弟我写的删除功能如何总是提示删除失败?为题出在什么地方 希望大家帮忙 代码如下

为什么 小弟我写的删除功能如何总是提示删除失败?为题出在什么地方 希望大家帮忙 代码如下

WBOY
WBOYOriginal
2016-06-13 10:22:07968browse

为什么 我写的删除功能怎么总是提示删除失败?为题出在什么地方 希望大家帮忙 代码如下
function delete($id = null) {
 
  if (!$id) {
  $this->Session->setFlash('Invalid ', true);
  }
   
  else if($this->User->del($id)) {
   
  $this->Session->setFlash(' deleted', true);
  }
  else {
  $this->Session->setFlash('Could not delete ', true);
  }
  $this->redirect(array('action'=>'userlist'));
  }


------解决方案--------------------
但是还是进入else这个分支了。 还不能删除就说明你的删除代码有问题了。$this->User->del();这个函数是怎么写的?

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn