dvdoug / stringstream
该包已被 废弃 且不再维护。未建议替代包。
字符串流包装器。基本上,就像 php://temp,但你可以有多个流。
v1.1.3
2019-11-28 20:49 UTC
Requires
- php: >=7.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.13
- phpunit/phpunit: ^7.4||^8.0
README
字符串流包装器。基本上,就像 php://temp 除了可以同时拥有多个流,并且可以预先初始化内容。这从未被过去的我测试过,实际上 php://temp 不会在句柄之间共享,并且这个包从未被需要。只需使用 php://temp。
使用方法
stream_wrapper_register('string', '\DVDoug\StringStream\StringStream'); $handle = fopen('string://foobar', 'r+'); $contents = ''; while (!feof($handle)) { $contents .= fread($handle, 8192); } fclose($handle);
许可证
StringStream 采用 MIT 许可证。