6

例如:

$contents = file_get_contents(image.png);

是否可以从 $contents 创建一个 SplFileObject 对象?

谢谢!

4

1 回答 1

15

php 有一些特殊的流包装器,可以让您重新利用各种文件系统功能

$contents = 'i am a string';
$file = 'php://memory'; //full memory buffering mode
//$file = 'php://temp/maxmemory:1048576'; //partial memory buffering mode. Tries to use memory, but over 1MB will automatically page the excess to a file.
$o = new SplFileObject($file, 'w+');
$o->fwrite($contents);

不过,您不需要使用SplFileObject来使用这些包装器;您可以改用fopenfwrite

于 2013-07-13T03:22:42.233 回答