codecamp

PHP8 wincache_refresh_if_changed — 刷新已缓存文件的缓存条目

(PECL wincache >= 1.0.0)

wincache_refresh_if_changed — 刷新已缓存文件的缓存条目。

说明

wincache_refresh_if_changed(array $files = NULL): bool

刷新传入输入参数中的文件条目的缓存条目。如果未指定参数,则刷新缓存中的所有条目。

参数

files

需要刷新的文件的文件名数组。可以使用绝对或相对文件路径。

返回值

成功时返回 true, 或者在失败时返回 false。

示例

WinCache定期检查缓存文件,以确保如果任何文件已更改,则缓存中的相应条目将更新。默认情况下,此检查每30秒执行一次。例如,如果一个PHP脚本更新了另一个存储应用程序配置设置的PHP脚本,那么在配置设置已保存到文件之后,应用程序可能仍然一段时间内使用旧的设置,直到刷新缓存。在这些情况下,最好在文件更改后立即刷新缓存。以下示例显示了如何执行此操作。

示例 #1 A wincache_refresh_if_changed() example

<?php
$filename = 'C:\inetpub\wwwroot\config.php';
$handle = fopen($filename, 'w+');
if ($handle === FALSE) die('Failed to open file '.$filename.' for writing');
fwrite($handle, '<?php $setting=something; ?>');
fclose($handle);
wincache_refresh_if_changed(array($filename));
?>

参见

  • wincache_fcache_fileinfo() - 检索有关文件缓存中已缓存文件的信息。
  • wincache_fcache_meminfo() - 检索有关文件缓存内存使用情况的信息。
  • wincache_ocache_fileinfo() - 检索有关在opcode缓存中已缓存文件的信息。
  • wincache_ocache_meminfo() - 检索有关opcode缓存内存使用情况的信息。
  • wincache_rplist_fileinfo() - 检索有关解析文件路径缓存的信息。
  • wincache_rplist_meminfo() - 检索有关解析文件路径缓存内存使用情况的信息。
  • wincache_ucache_meminfo() - 检索有关用户缓存内存使用情况的信息。
  • wincache_ucache_info() - 检索有关存储在用户缓存中的数据的信息。


PHP8 wincache_lock — 在给定的键上获取独占锁
PHP8 wincache_rplist_fileinfo — 获取有关解析文件路径缓存的信息
温馨提示
下载编程狮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; }