文件操作 - Font.php
返回文件管理
返回主菜单
删除本文件
文件: /usr/local/cwpsrv/var/services/roundcube-1.6.4/vendor/roundcube/rtf-html-php/src/Html/Font.php
编辑文件内容
<?php namespace RtfHtmlPhp\Html; class Font { public $family; public $name; public $charset; public $codepage; /** * Returns font style (font-family) string * * @return string A string including font-family: prefix. An empty string if font is not set */ public function toStyle() { $list = []; if ($this->name) { $list[] = $this->name; } if ($this->family) { $list[] = $this->family; } if (count($list) == 0) { return ''; } return "font-family:" . implode(',', $list); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件