Is there a simple interface like ZipArchive for tar.gz archives that allows me to transfer the archive to the client rather than saving it to the server? And if so, can someone show me how?
Thanks!
This link may be useful for you. Can you clarify if you want to temporarily reside in the file system?
http://www.clker.com/blog/2008/03/27/creating-a-tar-gz-on-the-fly-using-php/
You can direct the tar command with passthru () or exec () to send the tar.gz file to stdout. For instance.
tar cfz - name1 name2 ...
Source: https://habr.com/ru/post/913246/More articles:Best practice including javascript in django template - javascriptAndroid: rebuild now requires a compiler compliance level of 5.0 or 6.0. Instead, "1.7" was found. Why remove @Override? - javaWhat are you looking for in a web application authentication library? - securityThe input string was not in the correct format - c #Should a bad USB device handle a Linux kernel error? - linuxdirectory structure for downloading without saving to the server - phpAirPrint Connection Error - objective-cHow to understand Anorm parser? - playframework-2.0passing char arrays from C ++ to fortran - c ++How to make inline if expression in haml - ruby | fooobar.comAll Articles