Skip to content

Instantly share code, notes, and snippets.

View Findarato's full-sized avatar
🦁
Focusing

Joseph Harry Findarato

🦁
Focusing
View GitHub Profile
$base64Test = false;
if(isset($_GET["testCover"])){
$fileName = "http://cdn.laportelibrary.org/coverCache/imageFetch.php?isbn=junk&size=S";
$handle = fopen($fileName, "rb");
$contents = stream_get_contents($handle);
fclose($handle);
$base64Test = base64_encode($contents);
}