文件操作 - smarty_variable.php
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/php/smarty3/sysplugins/smarty_variable.php
编辑文件内容
<?php /** * class for the Smarty variable object * This class defines the Smarty variable object * * @package Smarty * @subpackage Template */ class Smarty_Variable { /** * template variable * * @var mixed */ public $value = null; /** * if true any output of this variable will be not cached * * @var boolean */ public $nocache = false; /** * create Smarty variable object * * @param mixed $value the value to assign * @param boolean $nocache if true any output of this variable will be not cached */ public function __construct($value = null, $nocache = false) { $this->value = $value; $this->nocache = $nocache; } /** * <<magic>> String conversion * * @return string */ public function __toString() { return (string)$this->value; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件