我需要知道这是什么数据格式,以及我要使用什么过程来从“昵称”中获取数据。我从$ _REQUEST获得了这些数据:
{id:10,Username:gab@gmail.com,nickname:gabe}
这是JSON格式的示例。它带有引号:
$json = '
{
"type": "donut",
"name": "Cake"
}';
然后,您可以通过插入以下行来调用类型:
$yummy = json_decode($json);
echo $yummy->type; //donut
我该如何解决这个问题?
答案 0 :(得分:0)
这是一个字符串,我们可以使用带有preg_match_all
的表达式并将其json:
$re = '/([^{}]+?):([^{}]+?),|([^{}]+):([^{}]+)/m';
$str = '{id:10,Username:gab@gmail.com,nickname:gabe}';
preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0);
$json_str = '{';
foreach ($matches as $value) {
if (!$value[3] && !$value[4]) {
$json_str .= '"' . $value[1] . '":"' . $value[2] . '",';
} else {
$json_str .= '"' . $value[3] . '":"' . $value[4] . '"';
}
}
$json_str .= '}';
var_dump(json_decode($json_str, true));
{"id":"10","Username":"gab@gmail.com","nickname":"gabe"}
array(3) {
["id"]=>
string(2) "10"
["Username"]=>
string(13) "gab@gmail.com"
["nickname"]=>
string(4) "gabe"
}
jex.im可视化正则表达式: