极致cms实现 每个文章 自动生成一个唯一的编码 如 A123 并在文章页面能调用显示
https://help.jizhicms.cn/plugins-cover.html
app/admin/c/ArticleController.php 中的addarticle 方法
比如你自定义唯一字段unicode,那么这里添加 $data['unicode'] = getRandChar(10);
$data['unicode'] = 'ABC'.rand(100,999); 三位大写加三个数字
$data['unicode'] = chr(rand(65, 90)) .rand(100,999); 一位大写加三个数字
评论 (0)