How to echo or print an array in PHP?

前端 未结 11 1517
春和景丽
春和景丽 2020-11-22 17:18

I have this array

Array
(
  [data] => Array
    (
      [0] => Array
        (
          [page_id] => 204725966262837
          [type] => WEBSITE         


        
11条回答
  •  独厮守ぢ
    2020-11-22 17:47

    You have no need to put for loop to see the data into the array, you can simply do in following manner

    ";
     print_r($results); 
    echo "
    "; ?>

提交回复
热议问题