gpt4 book ai didi

php - 如何创建一个假的/"virtual"文件?

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:34:52 24 4
gpt4 key购买 nike

我试图在不使用内存或临时文件的情况下创建一个“虚拟”文件。 “虚拟”文件需要通过使用 file_exists() 进行的检查,同时在使用 requireinclude 时不会抛出任何错误或警告。

Allows you to implement your own protocol handlers and streams for use with all the other filesystem functions (such as fopen(), fread() etc.).

...其中 file_exists() 是其中之一。 The docs page状态:

As of PHP 5.0.0, this function can also be used with some URL wrappers. Refer to Supported Protocols and Wrappers to determine which wrappers support stat() family of functionality.

我的尝试是构建一个自定义的虚拟文件包装器

class VirtualFileWrapper
{
public $context;

public function stream_open( $path, $mode, $options, &$opened_path )
{
return TRUE;
}

public function stream_stat()
{
var_dump( __METHOD__ );
$data = [
'dev' => 0,
'ino' => getmyinode(),
'mode' => 'r',
'nlink' => 0,
'uid' => getmyuid(),
'gid' => getmygid(),
'rdev' => 0,
'size' => 0,
'atime' => time(),
'mtime' => getlastmod(),
'ctime' => FALSE,
'blksize' => 0,
'blocks' => 0,
];
return array_merge( array_values( $data ), $data );
}
}

stream_wrapper_register( 'virtual', 'VirtualFileWrapper' );

$file = fopen( "virtual://foo", 'r+' );

// Executes VirtualFileWrapper::stream_stat()
fstat( $file );

// Executes no VirtualFileWrapper method
file_exists( $file );

fstat() 函数执行该方法时,file_exists() 不执行任何流类方法。

如何让虚拟流包装器工作(使用 file_exists())?


我完全知道 tempnam( __DIR__, '' ) 将同时通过:

  • var_dump( tempnam( __DIR__, '' ) ); 返回 true
  • require tempnam( __DIR__, '' ); 没有错误

但我不想使用临时文件,因为可能有更好的方法(性能方面)。

最佳答案

看起来你只需要在 VirtualFileWrapper 上实现一个公共(public)的 url_stat() 方法就可以通过 file_exists() 检查。

要消除来自includerequire 的警告和错误,您必须实现stream_read()stream_eof() 方法:

class VirtualFileWrapper
{
public $context;

public function stream_open( $path, $mode, $options, &$opened_path )
{
return TRUE;
}

public function stream_stat()
{
var_dump( __METHOD__ );
return [];
}

public function url_stat()
{
return array (
0 => 0,
1 => 0,
2 => 0,
3 => 0,
4 => 0,
5 => 0,
6 => 0,
7 => 0,
8 => 0,
9 => 0,
10 => 0,
11 => 0,
12 => 0,
'dev' => 0,
'ino' => 0,
'mode' => 0,
'nlink' => 0,
'uid' => 0,
'gid' => 0,
'rdev' => 0,
'size' => 0,
'atime' => 0,
'mtime' => 0,
'ctime' => 0,
'blksize' => 0,
'blocks' => 0
);
}

public function stream_read(){
return '';
}

public function stream_eof(){
return '';
}

}

stream_wrapper_register( 'virtual', 'VirtualFileWrapper' );

$file = fopen( "virtual://foo", 'r+' );

// Executes VirtualFileWrapper::stream_stat()
fstat( $file );

// Executes no VirtualFileWrapper method
file_exists("virtual://foo");

//Still no errors :-)!
require "virtual://foo";
include "virtual://foo";

注意向 file_exists() 传递一个字符串,而不是您使用 fopen() 创建的资源。

关于php - 如何创建一个假的/"virtual"文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37553914/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com