返回介绍

update 更新

发布于 2019-11-08 06:45:39 字数 1339 浏览 961 评论 0 收藏 0

update

修改表数据

update($table, $data, $where)
  • table [string]

    表名.

  • data [array]

    修改的数据.

  • where (optional) [array]

    WHERE 条件.[可选]

Return: [number] 受影响的行数.你可以修改没有序列化的数组, 并且能使用 [+], [-], [*], [/] 来做运算
class Foo {	var $bar = "cat";	public function __wakeup()	{		$this->bar = "dog";	}}$object_data = new Foo();$fp = fopen($_FILES[ "file" ][ "tmp_name" ], "rb");$database->update("account", [	"type" => "user",	// All age plus one	"age[+]" => 1,	// All level subtract 5	"level[-]" => 5,	// All score multiplied by 2	"score[*]" => 2,	// Array value	"lang" => ["en", "fr", "jp", "cn"],	// Array value encoded as JSON	"lang [JSON]" => ["en", "fr", "jp", "cn"],	// Boolean value	"is_locked" => true,	// Object value	"object_data" => $object_data,	// Large Objects (LOBs)	"image" => $fp,	// You can also assign # for using SQL functions	"#uid" => "UUID()"], [	"user_id[ 1000]);// The return object of update() is PDOStatement, so you can use its methods to get more information.$data = $database->update("account", [	"age[+]" => 1], [	"user_id[>]" => 100]);// Returns the number of rows affected by the last SQL statementecho $data->rowCount();// Read more: http://php.net/manual/en/class.pdostatement.php

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文