- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我试图在不使用内存或临时文件的情况下创建一个“虚拟”文件。 “虚拟”文件需要通过使用 file_exists()
进行的检查,同时在使用 require
或 include
时不会抛出任何错误或警告。
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()
检查。
要消除来自include
和require
的警告和错误,您必须实现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/
我注意到一些 PHP 框架只使用小写字母 true/false 而其他框架则使用大写字母。 这有什么区别吗?我个人更喜欢小写字母。 最佳答案 没什么区别,有些人认为 FALSE 是常量,因此使用旧的尖
在我看来,以下两种映射方式实际上没有区别。以下是基于 @MapsId javadoc 的示例: // parent entity has simple primary key @Entity publ
我想知道是否有人知道编译器如何解释以下代码: #include using namespace std; int main() { cout << (true && true || false &
我想知道为什么alert(new Boolean(false))打印 false 而不是打印对象,因为 new Boolean 应该返回对象。如果我使用 console.log(new Boolean
即使在 verify=False 时,Python 请求也会给我一个 ssl 握手失败(我知道不使用 SSL 是不可取的)。对于其他具有有效证书的站点,请求按预期工作。我正在使用2.7。 from l
TDPL 描述了 assert(false); 语句的行为。此类断言不会从发布版本中删除(与所有其他断言一样),并且实际上会立即停止程序。问题是为什么?为什么会有如此令人困惑的行为?他们可能会添加 h
如何确定文档是否存在于 Meteor 的集合中? 编辑:新代码。 mongodb 有一个 ProductName 的文档:Apples 输入产品是“苹果” var exists = Products.
我想在 R 中做一些相当复杂的事情,但我不确定从哪里开始。 我有一个看起来像这样的数据框: main_val sub_val bit_one bit_two one a 1
我正在尝试编写一个函数 long(S1,S2) 如果 S1 比 S2 长,则该函数应该为真,否则为假。到目前为止,我所拥有的是以下内容: longer(A,nil). longer(nil,B) :-
我想知道我在这里缺少什么我有一个代码可以检查图像是否基于 Canvas 是透明的。 function Trasparent(url, npc, clb) { var img = new Ima
我想在按下按钮时使其他类框架设置可见(false)。 有一个名为 DisplayScore 的类,该类获取 getContentPane().add(new ScoreInfo());来自 Score
我正在使用 TableLayout 和 TableRow 创建 6/6 网格按钮。 private Button myButton; private static final int
这个问题没有实际用途!我之所以问这个只是因为我很好奇! 在C++中,有一种方法可以通过在某处编写#define true false来将true伪造为false,然后在代码中到处的true都将被视为f
我不久前学习 java,所以也许我有一个愚蠢的问题。 我有一张表,我在其中存储了一些信息。我想在此表中检查一些信息的可用性(这将只有一行),如果是 - 从这一行中获取特定列中的信息,如果没有 - 做另
这是一个 JavaScript 问题... 我正在尝试返回完全不区分大小写的匹配项。例如,如果我在输入框中输入 "yo",我希望它返回 true,这在我当前的方法中是这样做的,但它也会返回 true
我认为,我在 JS 中写了一个直接的 if 语句,但它运行不正确。 function printLetter(LetterId) { var studentflag = $("#IsStude
我如何使用 Javascript 执行以下操作? var object function() { return { object: Return true if object
我试图让导航栏在向上滚动时向下滑动,并在单击#menu-bar 时保持固定。但是当我再次单击同一个按钮时,我不知道如何在自动隐藏时将值改回 false,就在我有两个按钮的时候。非常感谢任何帮助! $(
下面的代码 #include using namespace std; int main(){ char greeting[50] = "goodmorning everyone";
我正在使用数据源将数据填充到我的数据 GridView 中。但是,我正在尝试找到一种方法让用户能够隐藏他不想看到的列。 我可以在程序运行之前隐藏和显示列: [Browsable(false)] pub
我是一名优秀的程序员,十分优秀!