Skip to content

Instantly share code, notes, and snippets.

@thehawk970
Created February 5, 2015 21:02
Show Gist options
  • Save thehawk970/5ff0e3718201845498f7 to your computer and use it in GitHub Desktop.
Save thehawk970/5ff0e3718201845498f7 to your computer and use it in GitHub Desktop.
{
"require": {
"hoa/file": "0.14.12.10"
}
}
<?php
require_once "vendor/autoload.php";
$file = new \Hoa\File\Read('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css');
$file->on('progress', function () {
echo 'Hello';
});
echo md5($file->readAll());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment