blob: 628b8145795bc9fce1acfe5b3e7978303c803d9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
/**
* Description of ExecutionParameters
*
* @author andrew
*/
class SSRS_Object_ReportOutput extends SSRS_Object_Abstract {
public function download($filename) {
header("Cache-Control: public");
header("Content-Description: File Transfer");
header('Content-Disposition: attachment; filename="' . $filename . '"');
header("Content-Type: " . $this->mimeType);
header("Content-Transfer-Encoding: binary");
header("Content-Length: " . strlen($this->Result));
die($this->Result);
}
public function __toString() {
return (string) $this->Result;
}
}
|