文件操作 - Cache.php
返回文件管理
返回主菜单
删除本文件
文件: /root/Desktop/OLD/plugin-wordpress/advanced-cron-manager/vendor/underdev/utils/src/Cache/Cache.php
编辑文件内容
<?php /** * Cache object, which utilises key */ namespace underDEV\Utils\Cache; class Cache { /** * Cache unique key * @var string */ protected $key; /** * Constructor * @param string $key cache unique key */ public function __construct( $key ) { if ( empty( $key ) ) { trigger_error( 'Cache key cannot be empty' ); } $this->key = $key; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件