示例#1
0
文件: FileStream.php 项目: seytar/psx
 public function __construct($resource, $fileName, $contentType = null)
 {
     parent::__construct($resource);
     $this->fileName = $fileName;
     $this->contentType = $contentType;
 }
示例#2
0
 public function __construct($resource, $contentLength, $chunkedEncoding = false)
 {
     parent::__construct($resource);
     $this->contentLength = $contentLength;
     $this->chunkedEncoding = $chunkedEncoding;
 }