文件操作 - compat.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/forteagencynew/public_html/wp-content/plugins/wordfence/lib/compat.php
编辑文件内容
<?php if (!defined('WORDFENCE_VERSION')) { exit; } if (!function_exists('str_getcsv')) { function str_getcsv($input, $delimiter = ',', $enclosure = '"', $escape = null, $eol = null) { $temp = fopen("php://memory", "rw"); fwrite($temp, $input); fseek($temp, 0); $r = array(); while (($data = fgetcsv($temp, 0, $delimiter, $enclosure, $escape)) !== false) { $r[] = $data; } fclose($temp); return $r; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件