php 支持的协议
php手册
http://cn2.php.net/manual/zh/wrappers.file.php
file://
file:// — 访问本地文件系统
说明
文件系统是PHP使用的默认封装协议,展现了本地文件系统。 当指定了一个相对路径(不以
fopen ()和 file_get_contents(), include_path
/path/to/file.ext
relative/path/to/file.ext
fileInCwd.ext
C:/path/to/winfile.ext
C:\path\to\winfile.ext
\smbserver\share\path\to\winfile.ext
file:///path/to/file.ext
```
可选项
封装协议概要
|属性 | 支持|
|:———————:|:—:|
|受 allow_url_fopen 影响| No |
|允许读取 |Yes
|允许写入 |Yes
|允许添加 |Yes
|允许同时读和写 |Yes
|支持 stat() |Yes
|支持 unlink() |Yes
|支持 rename() |Yes
|支持 mkdir() |Yes
|支持 rmdir() |Yes
#####更新日志
版本 | 说明 |
---|---|
5.0.0 | 添加了 file://. |