Skip to content

Instantly share code, notes, and snippets.

View ashokmhrj's full-sized avatar

Ashok Maharjan ashokmhrj

  • Web Equation
  • Nepal
View GitHub Profile
@ashokmhrj
ashokmhrj / zip-archive-recursive-fn.php
Last active June 10, 2016 06:18
Archive folder php
<?php
/**
* PHP script to zip folder using RecursiveDirectoryIterator PHP function
*/
// Get real path for folder
$folder_to_zip = realpath("path-to-folder");
//saving zip
$zipname = "zip-file-name.zip";