Hàm: insert_row_array_table

By Asuna, 21112 View
Cách hoạt động của hàm này giống với hàm insert_row_table, nhưng hàm này cho phép tạo hàng với nhiều dữ liệu tương ứng với các cột cho trước.

Cú pháp:
insert_row_array_table(table_name, array_row)


Ví dụ:
{% set array_row = {'name':is_login(),'comment':get_post('msg'),'time':'now'|date('U')} %}
{% if request_method()|lower == 'post' %}
 {{insert_row_array_table('chat_demo', array_row)}}
{% endif %}