Files Compression Techniques in PHP
We are making one web site on which site users, can upload the data.
Data will be in any format. means it can any media file or any image file or any video file or any document file.
You can compress it (create a tar file for example) when moving the file from its temp upload location to a more permanent place on disk. However the file types you are talking about are binary files which don't always compress very much. Second no one compression scheme will result in the best results for all file types.
there is a way to compress files for different type of files there are tools e.g. for media data FFmpeg the good solution.
精彩评论