運行時配置

這些函數(shù)的行為受 php.ini 中的設(shè)置影響。

文件系統(tǒng)和流配置選項
名字 默認(rèn) 可修改范圍 更新日志
allow_url_fopen "1" PHP_INI_SYSTEM  
allow_url_include "0" PHP_INI_SYSTEM 自 PHP 7.4.0 起廢棄。
user_agent NULL PHP_INI_ALL  
default_socket_timeout "60" PHP_INI_ALL  
from "" PHP_INI_ALL  
auto_detect_line_endings "0" PHP_INI_ALL  
sys_temp_dir "" PHP_INI_SYSTEM  

這是配置指令的簡短說明。

allow_url_fopen bool

本選項激活了 URL 形式的 fopen 封裝協(xié)議使得可以訪問 URL 對象例如文件。默認(rèn)的封裝協(xié)議提供用 ftp 和 http 協(xié)議來訪問遠(yuǎn)程文件,一些擴展庫例如 zlib 可能會注冊更多的封裝協(xié)議。

allow_url_include bool

This option allows the use of URL-aware fopen wrappers with the following functions: include, include_once, require, require_once.

注意:

這個設(shè)置項需要開啟 allow_url_fopen 。

user_agent string

定義 PHP 發(fā)送的 User-Agent。

default_socket_timeout int

指定基于 socket 的流的默認(rèn)超時時間(秒)。指定一個負(fù)值意味著不會超時。

from string

這個 email 地址在使用 ftp 封裝器的時候用于未認(rèn)證的 FTP 連接,在使用 http 封裝器的時候用于 HTTP 連接的消息頭中的 From 字段。

auto_detect_line_endings bool

當(dāng)設(shè)為 On 時,PHP 將檢查通過 fgets()file() 取得的數(shù)據(jù)中的行結(jié)束符號是符合 Unix,MS-DOS,還是 Macintosh 的習(xí)慣。

這使得 PHP 可以和 Macintosh 系統(tǒng)交互操作,但是默認(rèn)值是 Off,因為在檢測第一行的 EOL 習(xí)慣時會有很小的性能損失,而且在 Unix 系統(tǒng)下使用回車符號作為項目分隔符的人們會遭遇向下不兼容的行為。

sys_temp_dir string