- if($action == 'download') {
- $tmp = ob_get_contents();
- ob_end_clean();
- $info = str_replace(array('src="', 'href="', 'background="', "location=('"), array('src="' . $boardurl, 'href="'.$boardurl, 'background="'.$boardurl, 'location=('.$boardurl), $tmp);
- $info = str_replace($boardurl.'http://','http://',$info);
- header('Expires: '.gmdate('D, d M Y H:i:s', $timestamp + 31536000).' GMT');
- header('Content-Encoding: none');
- header('Content-Disposition: attachment; filename='.$thread[subject].'.htm;');
- header('Content-Type: text/html');
- echo($info);
- }
复制代码 |