我有一个表 estat_proprety ,它有两个字段 id_proprety 和 equipement_json ,如下图所示(图01)
图01:
Estat_proprety | Type | Value
------------------ + ------------ + -----------
id_proprety | int | 01
------------------ + ------------ + -----------
equipement_json | json | {Hi-Fi, TV, washing-machine, elevator, iron,...}
软件版本:
- MySQL 5.7
- PHP5
- Laravel 5.2
代码:
foreach($Equipements as $ Equipement){
/* What should I do here for get list of equipment like this {Hi-Fi, TV, washing-machine, elevator, iron,...} ? */
}
/* $Equipement_json = ? (I don't know how can I get this format: Hi-Fi, TV,... ) */
$property = new Property;
$property->Equipement_json = $Equipement_json;
$property->save();
问题:
1-感谢您在 代码 中查看我的问题,我在评论中写了这些问题。
最终结果:
1-我希望在表格中找到什么图01