我在laravel中有一个Request,我在其中传递了一个json对象。 json是以下内容:{ "firstname": "michael" }
。
我正在编写一个动态搜索功能,我想将数据存储为“ firstname”和“ michael”两个2个不同的值。如何在php中做到这一点?
答案 0 :(得分:0)
<?php
$array = json_decode('{"firstname":"michael"}', TRUE);
foreach ($array as $first => $second){
echo "first: {$first}\nsecond: {$second}";
}
返回:
first: firstname
second: michael