dongmacuo1193 2012-05-08 05:19 采纳率: 0%
浏览 38

如何使用php readdir方法获取所有图像?

am using readdir to get all the image from the folder like

function get_user_image($valid_user){
    $rootdir = "../../../user/".$valid_user;
    $dir = opendir("../../../user/".$valid_user);
    $image = array();
    scan_image($image,$rootdir);
    print_r($image);
}
function scan_image($arr,$root){
    $dir = opendir($root);
    while (false!=($file=readdir($dir))){
        if($file!='.'&&$file!='..'){
            $isfile = strripos($file, ".");
            if($isfile)
            {
                $filetype = substr($file,$isfile+1);
                if($filetype=="jpg")
                {
                    //echo $file."</br>";
                    array_push($arr, $file);

                    echo sizeof($arr)."</br>";

                }
            }
             else
            {
                 $curpath = $root."/".$file;
                 scan_image($arr,$curpath);
            }
        }

     }
 }

but the print_r($image) is empty,however,the echo sizeof($arr) is right, any idea why?

  • 写回答

1条回答 默认 最新

  • dongnuoyi8833 2012-05-08 05:23
    关注

    Pass the array by reference

    function scan_image(&$arr,$root){
    
    评论

报告相同问题?

悬赏问题

  • ¥15 用windows做服务的同志有吗
  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图