Display an array in a readable/hierarchical format

后端 未结 18 952
北荒
北荒 2020-12-02 04:53

Here is the code for pulling the data for my array



        
18条回答
  •  有刺的猬
    2020-12-02 05:52

    if someone needs to view arrays so cool ;) use this method.. this will print to your browser console

    function console($obj)
    {
        $js = json_encode($obj);
        print_r('');
    }
    

    you can use like this..

    console($myObject);
    

    Output will be like this.. so cool eh !!

提交回复
热议问题