使用PHP获取此JSON中的所有键
简短的解决方案使用json_decode和array_keys功能:
json_decode
array_keys
$keys = array_keys(json_decode($mystring, true));