dvdoug/stringstream

该包已被 废弃 且不再维护。未建议替代包。

字符串流包装器。基本上,就像 php://temp,但你可以有多个流。

v1.1.3 2019-11-28 20:49 UTC

This package is auto-updated.

Last update: 2020-08-13 22:06:05 UTC


README

字符串流包装器。基本上,就像 php://temp 除了可以同时拥有多个流,并且可以预先初始化内容。这从未被过去的我测试过,实际上 php://temp 不会在句柄之间共享,并且这个包从未被需要。只需使用 php://temp。

Build Status Scrutinizer Code Quality Download count Download count

使用方法

stream_wrapper_register('string', '\DVDoug\StringStream\StringStream');

$handle = fopen('string://foobar', 'r+');
$contents = '';
while (!feof($handle)) {
  $contents .= fread($handle, 8192);
}
fclose($handle);

许可证

StringStream 采用 MIT 许可证。