如何在目录中循环并返回一个json格式的数组

时间:2013-11-15 07:15:47

标签: php json

考虑到我有以下目录和图像

父目录
本地主机/ myblog /用户/图像/只动物/

这些是我在 animals 文件夹

下的子文件夹
  

localhost / myblog / user / images / animals / reptiles
  localhost / myblog / user / images / animals / mammals
  localhost / myblog / user / images / animals / amphibians

这些是我在子文件夹下的图像

  

爬行动物/ alligator_thumb.jpg
  哺乳动物/ monkey_thumb.jpg
  两栖动物/ frog_thumb.jpg

现在我想在所有这些导演中循环,以这种方式使用JSON格式的数组:

{"Animals" {
    "type" {
          "Reptiles",
          "Mammals",
          "Amphibians" 
        }
    "Thumb" {
          "/localhost/myblog/user/images/animals/reptiles/alligator_thumb.jpg",
          "/localhost/myblog/user/images/animals/mammals/monkey_thumb.jpg",
          "/localhost/myblog/user/images/animals/amphibians/frog_thumb.jpg"
        }
    "Count" {
          "1", // these indicates on how many images per directory
          "1",
          "1"
        }
  }
}


我有一个使用 scandir 的想法,但它并没有让我说服我解决我的问题,就像我想用上面的例子一样。此致

0 个答案:

没有答案