文件操作 - Text.php
返回文件管理
返回主菜单
删除本文件
文件: /usr/local/cwpsrv/var/services/roundcube-1.6.4/vendor/roundcube/rtf-html-php/src/Text.php
编辑文件内容
<?php namespace RtfHtmlPhp; class Text extends Element { public $text; /** * Create a new Text instance with string content. * * @param string $text The content */ public function __construct($text) { $this->text = $text; } /** * Returns string representation of the object for debug purposes * * @param int $level Indentation level * * @return string */ public function toString($level) { return str_repeat(" ", $level) . "TEXT {$this->text}\n"; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件