使用包装器的 PHP 函数
我正在升级 PHP 代码库,以便能够在 PHP5.3+ 上运行,并且我需要一个使用包装器的函数列表。
http://www.php.net/manual/en/wrappers.php
本页提到; fopen()、copy()、file_exists() 和 filesize()。我确实知道还有其他功能; file_get_contents()、file() 等。
有人有完整的清单吗?或者也许是一种简单的方法来“grep”通过目录来查找使用包装器的函数?
I am in the process of upgrading a PHP code base to be able to run on PHP5.3+ and I need a list of functions that make use of wrappers.
http://www.php.net/manual/en/wrappers.php
This page mentions; fopen(), copy(), file_exists() and filesize(). I know for a fact that there are other functions; file_get_contents(), file() and others.
Does anyone has a complete list? Or perhaps an easy way to "grep" through a directory to look for functions using wrappers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
grep php_stream_open_wrapper_ex 调用的 php 源代码,这应该提供直接与包装器交互的
PHP_FUNCTION
。一个粗略且可能部分错误的列表(
-B 100
并不准确):grep the php source for
php_stream_open_wrapper_ex
calls, which should give thePHP_FUNCTION
s that directly interact with wrappers.A rough and probably partially wrong list (
-B 100
is not exact):