切换风格

默认 晚霞 雪山 粉色心情 伦敦 花卉 绿野仙踪 加州 白云 星空 薰衣草 城市 简约黑色 简约米色 龙珠
HYPHP Mysql插入多条数据
 2986     0
发表于 2017-9-11 |

HYPHP2.0已经废弃1.0中的InsertAll方法

可以直接使用insert进行插入多条数据

//多条数据插入 使用多维数组即可
S('table')->insert( [
    [
        "user_name" => "foo",
        "email" => "foo@bar.com",
        "age" => 25,
        "city" => "New York",
        "lang [JSON]" => ["en", "fr", "jp", "cn"]
    ],
    [
        "user_name" => "bar",
        "email" => "bar@foo.com",
        "age" => 14,
        "city" => "Hong Kong",
        "lang [JSON]" => ["en", "jp", "cn"]
    ]
]);
单条数据插入
S('table')->insert(
    [
        "user_name" => "foo",
        "email" => "foo@bar.com",
        "age" => 25,
        "city" => "New York",
        "lang [JSON]" => ["en", "fr", "jp", "cn"]
    ]
);

GMT+8, 2024-11-26 10:22:40 运行耗时 0.0297 秒.

Powered by HYBBS 2.3.4

© 2016-2019 HYBBS

返回顶部