var_dump関数で出力した配列の整形

var_dump関数で配列を出力すると、ブラウザでは整形されずに表示されます。これを整形するにはpreタグで囲って出力します。preタグによってコードの改行やインデントが有効になります。

WordPressプラグインACFの画像フィールドを配列で出力します。

<?php
  $img = get_field('img');

  echo('<pre>');
  var_dump($img);
  echo('</pre>');
?>

以下の通り配列を整形して表示できます。

array(24) {
  ["ID"]=>
  int(1630)
  ["id"]=>
  int(1630)
  ["title"]=>
  string(20) "img_pharmacy_point01"
  ["filename"]=>
  string(24) "img_pharmacy_point01.jpg"
  ["filesize"]=>
  int(37359)
  ["url"]=>
  string(82) "//localhost:3000/itszai-module/wp-content/uploads/2021/09/img_pharmacy_point01.jpg"
  ["link"]=>
  string(67) "//localhost:3000/itszai-module/modulegroup009/img_pharmacy_point01/"
  ["alt"]=>
  string(0) ""
  ["author"]=>
  string(1) "1"
  ["description"]=>
  string(0) ""
  ["caption"]=>
  string(0) ""
  ["name"]=>
  string(20) "img_pharmacy_point01"
  ["status"]=>
  string(7) "inherit"
  ["uploaded_to"]=>
  int(1525)
  ["date"]=>
  string(19) "2021-09-01 10:10:08"
  ["modified"]=>
  string(19) "2021-09-01 10:10:08"
  ["menu_order"]=>
  int(0)
  ["mime_type"]=>
  string(10) "image/jpeg"
  ["type"]=>
  string(5) "image"
  ["subtype"]=>
  string(4) "jpeg"
  ["icon"]=>
  string(67) "//localhost:3000/itszai-module/wp-includes/images/media/default.png"
  ["width"]=>
  int(596)
  ["height"]=>
  int(596)
  ["sizes"]=>
  array(18) {
    ["thumbnail"]=>
    string(90) "//localhost:3000/itszai-module/wp-content/uploads/2021/09/img_pharmacy_point01-150x150.jpg"
    ["thumbnail-width"]=>
    int(150)
    ["thumbnail-height"]=>
    int(150)
    ["medium"]=>
    string(90) "//localhost:3000/itszai-module/wp-content/uploads/2021/09/img_pharmacy_point01-300x300.jpg"
    ["medium-width"]=>
    int(300)
    ["medium-height"]=>
    int(300)
    ["medium_large"]=>
    string(82) "//localhost:3000/itszai-module/wp-content/uploads/2021/09/img_pharmacy_point01.jpg"
    ["medium_large-width"]=>
    int(596)
    ["medium_large-height"]=>
    int(596)
    ["large"]=>
    string(82) "//localhost:3000/itszai-module/wp-content/uploads/2021/09/img_pharmacy_point01.jpg"
    ["large-width"]=>
    int(596)
    ["large-height"]=>
    int(596)
    ["1536x1536"]=>
    string(82) "//localhost:3000/itszai-module/wp-content/uploads/2021/09/img_pharmacy_point01.jpg"
    ["1536x1536-width"]=>
    int(596)
    ["1536x1536-height"]=>
    int(596)
    ["2048x2048"]=>
    string(82) "//localhost:3000/itszai-module/wp-content/uploads/2021/09/img_pharmacy_point01.jpg"
    ["2048x2048-width"]=>
    int(596)
    ["2048x2048-height"]=>
    int(596)
  }
}
タイトルとURLをコピーしました