codecamp

PHP8 WinCache Functions Reroutes

注意:自WinCache 1.3.7.0起,已移除wincache.rerouteini。它已被自动函数重定向所取代。请参见:wincache.reroute_enabled。

自WinCache 1.2.0起提供的WinCache函数重定向(在WinCache 1.3.7.0中已移除)可以用于替代内置PHP函数,使其转向为针对特定目的进行了优化的等效函数。WinCache扩展包括了针对Windows优化的PHP文件函数的实现,这可能会在PHP需要访问网络共享文件时提高PHP应用程序的性能。已为以下函数提供了优化实现:

  • file_exists
  • file_get_contents
  • readfile
  • is_readable
  • is_writable
  • is_dir
  • realpath
  • filesize

要配置WinCache以使用函数重定向,使用包含在WinCache安装包中的reroute.ini文件。将此文件复制到存放php.ini文件的相同目录中。之后,在php.ini中添加wincache.rerouteini设置,并指定reroute.ini文件的绝对或相对路径。

示例 #1 Enabling WinCache functions reroutes

wincache.rerouteini = C:\PHP\reroute.ini

注意:如果启用了WinCache函数重定向,建议增加WinCache文件缓存大小。这可以通过使用wincache.fcachesize设置来完成。

reroute.ini文件包含了原生PHP函数与其在WinCache中的等效函数之间的映射。文件中的每一行都使用以下语法定义一个映射:

<PHP函数名称>:[<函数参数数量>]=<wincache函数名称>

下面是文件的示例。在此示例中,只有当传递给函数的参数数量少于或等于2时,对PHP函数file_get_contents()的调用将被替换为对wincache_file_get_contents()的调用。在替代函数不处理所有函数参数时,指定参数数量非常有用。

示例 #2 Reroute.ini file content

[FunctionRerouteList]
file_exists=wincache_file_exists
file_get_contents:2=wincache_file_get_contents
readfile:2=wincache_readfile
is_readable=wincache_is_readable
is_writable=wincache_is_writable
is_writeable=wincache_is_writable
is_file=wincache_is_file
is_dir=wincache_is_dir
realpath=wincache_realpath
filesize=wincache_filesize


PHP8 WinCache Session Handler
PHP8 资源类型
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

PHP8 语言参考

PHP8 函数参考

PHP8 影响 PHP 行为的扩展

PHP8 Componere

PHP8 安装/配置

PHP8 外部函数接口

PHP8 选项和信息

PHP8 选项/信息 函数

PHP8 Windows Cache for PHP

PHP8 WinCache 函数

PHP8 Yac

PHP8 身份认证服务

PHP8 Radius 函数

PHP8 压缩与归档扩展

PHP8 Phar

PHP8 Zip

PHP8 ZipArchive 类

PHP8 加密扩展

PHP8 OpenSSL

PHP8 OpenSSL 函数

PHP8 Sodium 函数

PHP8 数据库扩展

PHP8 针对各数据库系统对应的扩展

PHP8 CUBRID 函数

PHP8 Firebird/InterBase

PHP8 Firebird/InterBase函数

PHP8 MongoDB介绍驱动程序体系结构和特殊功能

PHP8 MongoDB\Driver\Command 类

PHP8 MongoDB\Driver\Query 类

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }