- json_decode: documentation ( source)
- var_export: documentation ( source)
- key: documentation ( source)
<?php
$json='{"description":"Testing","site":"http:\\/\\/localhost","steps":{"step":{"command":"grabimage","parameter":"img[alt=\\"1Next\\"]"}}}';
/*$array=array (
'description' => 'Testing',
'site' => 'http://localhost',
'steps' =>
array (
'step' =>
array (
'command' => 'grabimage',
'parameter' => 'img[alt="1Next"]',
)
),
);*/
//var_export(json_encode($array));
$array=json_decode($json,true);
if(key($array['steps']['step'])==='command'){
$array['steps']['step']=[$array['steps']['step']];
}
var_export($array);