我有一个类似
的数组Array
(
[user_id] => 53edcd30-6cf4-4d3c-b5d3-7a76ac14142e
[training_course_id] => Array
(
[0] => 1
[1] => 3
[2] => 5
)
)
现在我想使用cakephp将此数组插入数据库表中。我不知道该怎么做。请帮我。我是cakephp的新手。
答案 0 :(得分:0)
试试这个......
$query = $articles->query();
$query->insert(['title', 'body'])
->values([
'title' => 'First post',
'body' => 'Some body text'
])
->execute();
<强>参见强>:http://book.cakephp.org/3.0/en/orm/query-builder.html http://cakephp.1045679.n5.nabble.com/Custom-Query-Insert-Into-td1286305.html