Skip to content

Instantly share code, notes, and snippets.

@samuelsimoes
Created October 3, 2012 18:19
Show Gist options
  • Save samuelsimoes/3828750 to your computer and use it in GitHub Desktop.
Save samuelsimoes/3828750 to your computer and use it in GitHub Desktop.
Comprimir arquivos via PHP
<?php
/**
* Comprimir um diretório no servidor usando PHP.
*
* A linha comentada é uma alternativa no caso da primeira
* não funcionar.
*/
var_dump(exec('zip -r backup.zip site/'));
//var_dump(exec('tar cjvfp backup.tar.bz2 site/'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment