Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
{"one":4,"two":6,"three":7,"four":6,"five":6}
$str = '{"one":4,"two":6,"three":7,"four":6,"five":6}'; $arr = json_decode($str , true); // массив $obj = json_decode($str); // объект
$json = '{"one":4,"two":6,"three":7,"four":6,"five":6}'; $result = json_decode($json, true);
$string = '{"one":4,"two":6,"three":7,"four":6,"five":6}'; $array = json_decode($string, true);