文件操作 - parse-result.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/forzabuilt/public_html/wp-content/plugins/elementor/core/utils/api/parse-result.php
编辑文件内容
<?php namespace Elementor\Core\Utils\Api; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Parse_Result { private Parse_Errors $errors; private $value; public static function make() { return new static(); } public function __construct() { $this->errors = Parse_Errors::make(); } public function wrap( $value ): self { $this->value = $value; return $this; } public function unwrap() { return $this->value; } public function is_valid(): bool { return $this->errors->is_empty(); } public function errors(): Parse_Errors { return $this->errors; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件