简体   繁体   中英

how to convert to json from post in Yii2

I want to create json from multiple selection from listbox in yii2 after post i receive following data

categorymodel[0]=11&categorymodel[1]=12&categorymodel[2]=13 

how to convert to json data and store in db.

json data like {"11","12","13"}

一旦有了适当的数组,就可以使用例如:

$retJSON=  json_encode($categoryModel);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM