文件操作 - autoload.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/rokpaw/public_html/wp-content/plugins/duplicator-pro/lib/onedrive/autoload.php
编辑文件内容
<?php namespace DuplicatorPro\Krizalys\Onedrive; defined("ABSPATH") or die(""); // The Onedrive SDK autoloader. You probably shouldn't be using this. Instead, // use a global autoloader, like the Composer autoloader. // // But if you really don't want to use a global autoloader, do this: // // require_once __DIR__ . '/Onedrive/autoload.php' /** * @param string $name The name. * * @internal */ function autoload($name) { // If the name doesn't start with "Krizalys\Onedrive\", then it's not one of our classes. if (substr_compare($name, 'DuplicatorPro\\Krizalys\\Onedrive\\', 0, 32) !== 0) { return; } // Take the "Krizalys\Onedrive\" prefix off. $stem = substr($name, 32); // Convert "\" and "_" to path separators. $pathifiedStem = str_replace(['\\', '_'], '/', $stem); $path = __DIR__ . '/src/Krizalys/Onedrive/' . $pathifiedStem . '.php'; if (is_file($path)) { require_once $path; } } spl_autoload_register('DuplicatorPro\Krizalys\Onedrive\autoload');
修改文件时间
将文件时间修改为当前时间的前一年
删除文件