Example :
<?php // file to unzip $file = "file.zip"; $zip = new ZipArchive; $res = $zip->open($file); if ($res === TRUE) { // extract the unzip file to given path $zip->extractTo("/myzips/extract_path/"); $zip->close(); echo "Unzip Successful!"; } else { echo "Unzip unsuccessful!!! - Unable to open the file"; } ?> /* Output : Unzip Successful! */
Technical Architect
Kuala Lumpur, Malaysia
I'm a Full Stack Web Developer working in a MNC and passionate of developing modern web and mobile applications.
I have designed and developed CodephpOnline & CodephpOnline Wiki platform to expatiate my coding and technology learning experiences.
In my leisure time, I write technical articles on web development such as PHP, Laravel, CodeIgniter, Mediawiki, Linux, Angular, Ionic, ReactJS, NodeJS, AJAX, jQuery, Cloud and more.