前言
博客运行有一段时间了,一些文章需要评论才能看到全部。结果收到评论,大部分是666,111,adf之类的。所以新增一个功能,在加载的时候,自己自动输入一条文字评论。
实现
/* 随机一言评论功能 */
function random_comment() {
$comments = array('对小白真的很友好,写的很全面。',
'终于找到这篇文章了,感谢作者的分享!',
'喜欢这篇文章,作者666,文章真棒!',
'支持博主,一定多分享',
'这篇文章写的真不错,真详细,点个赞。',
'这篇文章肯定会火,作者666大顺',
'受益匪浅,感谢博主。',
'学习到了,感谢博主');
return $comments[rand(0,count($comments)-1)];
}
<textarea class="text joe_owo__target" name="text" value="" autocomplete="new-password" placeholder="说点什么吧,点击右上方切换成画图试试?"><?php echo random_comment(); ?></textarea>
评论 (0)