* @package entries * @version 1 * @link http://www.zentao.net */ class zfileContentEntry extends entry { /** * GET method. * * @param string $fileID * @access public * @return string */ public function get($fileID) { ob_end_clean(); header("Content-type: application/octet-stream"); header("Content-Transfer-Encoding: binary"); header("Accept-Ranges: bytes"); // header("Content-Length: " . filesize($filePath)); header("Content-Disposition: attachment; filename=\"hello.txt\""); echo 'hello'; } }