How to convert the json data to the below mentioned format

梦想与她 提交于 2019-12-24 20:29:27

问题


The data given below is the josn converted from xml data.

{"tldlist":{"tld":[{"tld":"co.uk"},{"tld":"eu"},{"tld":"live"},{"tld":{}}],"tldcount":"4"},"Command":"GETTLDLIST","APIType":"API","Language":"eng","ErrCount":"0","ResponseCount":"0","MinPeriod":{},"MaxPeriod":"10","Server":"SJL1VWRESELL_T","Site":"eNom","IsLockable":{},"IsRealTimeTLD":{},"TimeDifference":"+0.00","ExecTime":"0.000","Done":"true","TrackingKey":"b3c16684-c533-4947-b40a-19a5b4c08a31","RequestDateTime":"5\/10\/2018 12:54:28 AM","debug":{}}

I need to convert the above data to the format mentioned below:

  array (
 'tldlist' => 
array (
'tld' => 
array (
  0 => 
  array (
    'tld' => 'co.uk',
  ),
  1 => 
  array (
    'tld' => 'eu',
  ),
  2 => 
  array (
    'tld' => 'live',
  ),
  3 => 
  array (
    'tld' => 
    array (
    ),
  ),
),
'tldcount' => '4',
),
'Command' => 'GETTLDLIST',
'APIType' => 'API',
'Language' => 'eng',
'ErrCount' => '0',
'ResponseCount' => '0',
'MinPeriod' => 
 array (
),
 'MaxPeriod' => '10',
 'Server' => 'SJL1VWRESELL_T',
 'Site' => 'eNom',
 'IsLockable' => 
 array (
 ),
  'IsRealTimeTLD' => 
   array (
   ),
  'TimeDifference' => '+0.00',
  'ExecTime' => '0.000',
  'Done' => 'true',
  'TrackingKey' => 'b3c16684-c533-4947-b40a-19a5b4c08a31',
  'RequestDateTime' => '5/10/2018 12:54:28 AM',
  'debug' => 
   array (
   ),
 )

Find my controller code:

  public function test(){

    $response = file_get_contents('https://resellertest.enom.com/interface.asp?command=gettldlist&uid=resellid&pw=resellpw&responsetype=xml');       

        $data = simplexml_load_string($response);
        $configdata   = json_encode($data);

        return view('clientlayout.main.test1', array('configdata' => 
       $configdata ));


      }

Suggest me solution to get the data in the mentioned format.I need the json data in the decoded format in my view.when I use json_decode in the controller I'm getting error as "htmlspecialchars() expects parameter 1 to be string, array given".


回答1:


I have just tested the code and it works

$response = file_get_contents('https://resellertest.enom.com/interface.asp?command=gettldlist&uid=resellid&pw=resellpw&responsetype=xml');       
$data = simplexml_load_string($response);
$configdata   = json_encode($data);
$final_data = json_decode($configdata,true);// Use true to get data in array rather than object
echo "<pre>";print_r($final_data);exit;

And below is the output i got,

Array
(
    [tldlist] => Array
        (
            [tld] => Array
                (
                    [0] => Array
                        (
                            [tld] => co.uk
                        )

                    [1] => Array
                        (
                            [tld] => eu
                        )

                    [2] => Array
                        (
                            [tld] => live
                        )

                    [3] => Array
                        (
                            [tld] => Array
                                (
                                )

                        )

                )

            [tldcount] => 4
        )

    [Command] => GETTLDLIST
    [APIType] => API
    [Language] => eng
    [ErrCount] => 0
    [ResponseCount] => 0
    [MinPeriod] => Array
        (
        )

    [MaxPeriod] => 10
    [Server] => SJL1VWRESELL_T
    [Site] => eNom
    [IsLockable] => Array
        (
        )

    [IsRealTimeTLD] => Array
        (
        )

    [TimeDifference] => +0.00
    [ExecTime] => 0.000
    [Done] => true
    [TrackingKey] => 2b71ef9f-005e-4a33-a66f-3f1f69188f1f
    [RequestDateTime] => 5/10/2018 4:11:02 AM
    [debug] => Array
        (
        )

)

I think this is what you are looking for




回答2:


It Will work.

 $configdata   = collect(json_decode(json_encode($data)))
                    ->toArray();


来源:https://stackoverflow.com/questions/50270240/how-to-convert-the-json-data-to-the-below-mentioned-format

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!