文件操作 - Match.php
返回文件管理
返回主菜单
删除本文件
文件: /root/.local/share/Trash/files/roundcube/plugins/libkolab/vendor/Caxy/HtmlDiff/Match.php
编辑文件内容
<?php namespace Caxy\HtmlDiff; class Match { public $startInOld; public $startInNew; public $size; public function __construct($startInOld, $startInNew, $size) { $this->startInOld = $startInOld; $this->startInNew = $startInNew; $this->size = $size; } public function endInOld() { return $this->startInOld + $this->size; } public function endInNew() { return $this->startInNew + $this->size; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件