Skip to content

Instantly share code, notes, and snippets.

@alanboy
Last active July 8, 2017 07:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alanboy/64cf4afd6a5594758be19bc7de34d0cb to your computer and use it in GitHub Desktop.
Save alanboy/64cf4afd6a5594758be19bc7de34d0cb to your computer and use it in GitHub Desktop.
<?php
class wget{
static function fetch($url){
return system('wget -r ' . $url, $retval);
}
}
wget::fetch("http://omegaup.org");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment