我想在没有领先的源路径的情况下将文件解压缩到php中。 我有一个zip文件,可以说/var/www/test/myproj/storage/data.zip
当我说:
$zip = new ZipArchive();
$x = $zip->open(storage_path("data.zip"));
$zip->extractTo(storage_path("final"));
然后使用领先的源路径提取文件,这意味着文件被提取为:/ var / www / test / myproj / storage / final / var / www / test / myproj / storage / file1 .....
但是我想要作为/ var / www / test / myproj / storage / final / file1 ...