<?php $string = '{ "46ffacdf-8009-4e7f-9076-1f7f59b152ee": { "variations": { "0": { "_value": { "value": "24,73" }, "_sku": { "value": "79" } } }, "selected": { }, "values": { "0": { } }, "default_variant": "0" }, "48a14646-9b57-44eb-98bc-9c34139bfcd6": { "0": { "file": "images\/237.jpg", "title": "", "link": "", "target": "0", "rel": "" } }, "fff28767-8e69-4c58-ac8b-9ce290c38548": { "0": { "value": "" } }, "8056b532-4837-4514-9d20-6399215a93d9": { "value": "1" } }'; $string = json_decode($string, true, 512, JSON_THROW_ON_ERROR); foreach ($string as $item){ if (isset($item['variations'][0]['_value']['value'])) $value = $item['variations'][0]['_value']['value']; if (isset($item[0]['file'])) $file = $item[0]['file']; } echo $value; echo "\n"; echo $file;
You have javascript disabled. You will not be able to edit any code.