文件操作 - StorageInterface.php
返回文件管理
返回主菜单
删除本文件
文件: /home/acihmzbq/public_html/wp-content/plugins/loginizer/lib/hybridauth/Storage/StorageInterface.php
编辑文件内容
<?php /*! * Hybridauth * https://hybridauth.github.io | https://github.com/hybridauth/hybridauth * (c) 2017 Hybridauth authors | https://hybridauth.github.io/license.html */ namespace Hybridauth\Storage; /** * Hybridauth storage manager interface */ interface StorageInterface { /** * Retrieve a item from storage * * @param string $key * * @return mixed */ public function get($key); /** * Add or Update an item to storage * * @param string $key * @param string $value */ public function set($key, $value); /** * Delete an item from storage * * @param string $key */ public function delete($key); /** * Delete a item from storage * * @param string $key */ public function deleteMatch($key); /** * Clear all items in storage */ public function clear(); }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件