コード例 #1
0
ファイル: FileStream.php プロジェクト: seytar/psx
 public function __construct($resource, $fileName, $contentType = null)
 {
     parent::__construct($resource);
     $this->fileName = $fileName;
     $this->contentType = $contentType;
 }
コード例 #2
0
ファイル: SocksStream.php プロジェクト: seytar/psx
 public function __construct($resource, $contentLength, $chunkedEncoding = false)
 {
     parent::__construct($resource);
     $this->contentLength = $contentLength;
     $this->chunkedEncoding = $chunkedEncoding;
 }