clipbucket/upload/api/thumb-sample.php
2013-10-07 12:17:06 +00:00

10 lines
No EOL
171 B
PHP

<?php
include('../includes/config.inc.php');
sleep(2);
$file = THUMBS_DIR.'/default.jpg';
header("Content-type: image/jpeg");
echo file_get_contents($file);
?>