$ dir =“img / ori /”;
$ dir_thumbs =“img / thumbs /”;
$ images = array();
$ d =目录($ dir);
while($ name = $ d-> read()){
$ thumb =“thumb _”。$ name;
$ images [] = array('name'=> $ name,'thumb_url'=> $ dir_thumbs。$ thumb);
}
$ D->关闭();
$ o = array('images'=> $ images);
我想输出所有图像的$ name和$ thumb_url。怎么做。?帮助我