save($data,array('where'=>"shengcunqi = '0000-00-00 ">

Maison >développement back-end >tutoriel php > thinkphp 小弟我执行了一条更新语句 想要获取到影响的行数

thinkphp 小弟我执行了一条更新语句 想要获取到影响的行数

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBoriginal
2016-06-13 13:07:44870parcourir

thinkphp 我执行了一条更新语句 想要获取到影响的行数
例子:

PHP code
<!--

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

-->$book = M('Book');
$data = array();
$data['shengCunQi'] = time();
$book->save($data,array('where'=>"shengcunqi = '0000-00-00 00:00:00'",'limit'=>'17'));
//我想获取到这条语句所影响到的行数. 
也就是说: 我要获取到 我一共更新了多少条语句.


------解决方案--------------------
PHP code

$book = M('Book');
$data = array();
$data['shengCunQi'] = time();
$result = $book->save($data,array('where'=>"shengcunqi = '0000-00-00 00:00:00'",'limit'=>'17'));
var_dump($result); //$result将返回你所影响的行数或false <div class="clear">
                 
              
              
        
            </div>
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn