Skip to content

Instantly share code, notes, and snippets.

@thehawk970
Created February 5, 2015 21:08
Show Gist options
  • Save thehawk970/8f222c0182a379da166c to your computer and use it in GitHub Desktop.
Save thehawk970/8f222c0182a379da166c 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('connect', 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