Unzip File using php
I always need to upload file to my client server and unzip and install it. In most case server do not enable ssh. So Here below I am attaching simple php script to unzip file function unzip($file){ $zip=zip_open(realpath(“.”).”/”.$file); if(!$zip) {return(“Unable Read More