> 백엔드 개발 > PHP 튜토리얼 > MySQL操作实施成功,但没有返回值

MySQL操作实施成功,但没有返回值

WBOY
풀어 주다: 2016-06-13 13:21:42
원래의
1353명이 탐색했습니다.

MySQL操作执行成功,但没有返回值?
在MySQL console中执行:

SQL code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->

mysql>update `1001` set finish=0 where sid=94664;
Query OK,1 row affected (0.07 sec)
Rows matched:1 changed:1 warnings:0


로그인 후 복사


php中的语句:

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->

$tid="`".$_COOKIE['uid']."`";
$which="finish=1";
$where="sid=".$sid;
$db=new Mysql("localhost","root","","members_check","","UTF8");
$db->connect();
$result=$db->update($tid,$which,$where);
echo $result;    
//if($result){echo 0;}else{echo 1;}


로그인 후 복사


js那里返回来的就是空,什么都没有。用下面那个if语句返回不了0。但是数据库里全部操作成功。

附上封装的函数:

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->

public function query($sql) {
     if ($sql == "") {
     echo "SQL语句为空";
     }
     $this->sql = $sql;
     $result = mysql_query($this->sql, $this->conn) or die('faill'.mysql_error());
     $this->result = $result;
     return $this->result;
}

public function update($table, $mod_content, $condition, $url = '') {
     $result=$this->query("UPDATE $table SET $mod_content WHERE $condition");
     return $result;
}



로그인 후 복사


------解决方案--------------------
$result=$db->update($tid,$which,$where);
var_dump($result);
显示 null

显然LZ使用的代码与他贴出的代码是不一样的
继续讨论是无意义的
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿