一般網(wǎng)站底部都會(huì)留下 某某年-某某年 某某公司版權(quán)所有的 字樣。例如:2015-2020 版權(quán)所有。每年都要將后面?zhèn)€年份數(shù)字手動(dòng)+1。好麻煩,還容易忘記。
今天帶你搞定它。
步驟:
1、打開(kāi) /apps/home/controller/ParserController.php
搜索
parserAfter 這個(gè)方法,在
return $content; 上一行插入:
$content = str_replace('{Year}', date('Y'), $content);
|
代碼加完如圖:
使用方法
任意位置輸入{Year},即表示當(dāng)年的年份。
教程結(jié)束,收工。