if($user->where('phone='.$phone)->save($dataList)){}
if($user->where(array('phone' =>$phone))->save($dataList)){}
thinkphp更新数据库的时候where('')为字符串,要么为数组。为字符串要点连接
本文共 158 字,大约阅读时间需要 1 分钟。
if($user->where('phone='.$phone)->save($dataList)){}
if($user->where(array('phone' =>$phone))->save($dataList)){}
thinkphp更新数据库的时候where('')为字符串,要么为数组。为字符串要点连接
转载地址:http://zyzda.baihongyu.com/