Extract sub folders of ZIP file in PHP

后端 未结 3 1072
借酒劲吻你
借酒劲吻你 2020-12-11 10:01

I am using a php script to unzip ZIP file. but this script unzip only one level of directories without extracting the sub directories of that file the script:



        
3条回答
  •  既然无缘
    2020-12-11 10:51

    I think this PHP manual will be helpful to you http://php.net/manual/en/ref.zip.php

    ";
                $count++;
            }
    
            zip_close($zip);
        }
    }
    Unzip($dir,$file);
    ?>
    

提交回复
热议问题