文件操作 - Call.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/give/src/Helpers/Call.php
编辑文件内容
<?php namespace Give\Helpers; use Give\Framework\Exceptions\Primitives\InvalidArgumentException; class Call { /** * Call an invokable class. * * @since 2.17.0 * * @param mixed $args * * @return mixed * * @deprecated 2.23.0 Instantiate and invoke the class directly or use the (new Class())() syntax. This gives better tracking in the IDE. */ public static function invoke(string $class, ...$args) { if (!method_exists($class, '__invoke')) { throw new InvalidArgumentException("{$class} class is not invokable"); } /** @var callable $instance */ $instance = give($class); return $instance(...$args); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件