How to extract only 15 from [{"1":"15"}] in Laravel controller?
$var = array();
$mku = $mark->examMark;
$var[] = json_decode($mku, true);
I have tried using the above code but it doesn't work.
Do this:
$value = json_decode($mku, true)[1];
dd(json_decode($mku, true));\Log::info('Result is: '.json_decode($mku, true)); and see for the result in storage/logs/laravel.logjson_decode(json_decode($mku, true), true)[1] then.