标签:问号 elf exce catch ret shelf except tab 分离
public static function upShelf($table,$arr,$where)
{
//将传入的数组进行key vlaue 分离 并将key值以问号方式绑定参数
$key=implode("=?,",array_keys($arr))."=?";
//判断是否传入where 条件
$where=$where==null?null:" where ".$where;
try {
$db=self::$link->prepare("UPDATE {$table} SET {$key} {$where}");
return $db->execute(array_values($arr));
} catch (PDOException $e) {
self::throw_exception($e->getMessage());
}
}
标签:问号 elf exce catch ret shelf except tab 分离
原文地址:http://www.cnblogs.com/aground/p/6760144.html