php文件访问协议化
程序员文章站
2022-05-01 22:42:00
...
惭愧,前几天翻看 unix编程艺术 才认识到,以前经常翻看 php手册 过程中经常见到的 Supported Protocols and Wrappers 是多么让人喜爱 php的封装协议的语法仅支持 scheme://... php支持的协议有: file:// — 访问本地文件系统http:// — 访问 HTTP(s) 网址ft
惭愧,前几天翻看 unix编程艺术
才认识到,以前经常翻看 php手册
过程中经常见到的 Supported Protocols and Wrappers 是多么让人喜爱
- php的封装协议的语法仅支持
scheme://...
-
php支持的协议有:
file:// — 访问本地文件系统 http:// — 访问 HTTP(s) 网址 ftp:// — 访问 FTP(s) URLs php:// — 访问各个输入/输出流(I/O streams) zlib:// — 压缩流 data:// — 数据(RFC 2397) glob:// — 查找匹配的文件路径模式 phar:// — PHP 归档 ssh2:// — Secure Shell 2 rar:// — RAR ogg:// — 音频流 expect:// — 处理交互式的流
-
影响的函数有:
fopen() copy() fileexists() filesize() getimagesize() filegetcontents() fileput_contents() readfile() …
-
注意:
-
php://output
和php://stdout
在CLI
下是一模一样的即都会输出,因为他们都指向当前进程的STDOUT
,但在apache
中php://stdout
没有输出,原因就是:
CLI
方式,所有输出都是指向标准输出即 终端APACHE
方式[SAPI
]方式,STDOUT
是终端即apache的子进程的STDOUT,而php://output
则承载HTTP
进程的输出
2.fopen("./filename.ext")
和fopen("/absolute_file_path/filename.ext")
可以认为是对 fopen("file://.filename.ext")和
fopen("file:///absolutefilepath/filename.ext")` 的简化 -
-
原文地址:php文件访问协议化, 感谢原作者分享。