本帖最后由 mulao 于 2014-10-31 23:31 编辑
很简单的,
用不着插件,php几行代码搞定
下面介绍一下方法,当然前提是你要有一些基本的代码知识,
要不然你也没法理解,
[mw_shl_code=php,true]$sentence = file_get_contents(dirname(__FILE__).'/words.txt');//读取文本
$sentence = str_replace( "\r", "",$sentence); //去掉换行符(以便兼容Linux主机)
$sentence = preg_split('/\n/', $sentence, -1, PREG_SPLIT_NO_EMPTY);//分割字符形成数组
$words =$sentence[mt_rand(0,count($sentence )-1)]; //随机一下
echo $words ; //这句放到想要显示的地方去[/mw_shl_code]
那个words.txt放那些你想要显示的句子
一行一个句子,
上面那段代码放到你想要显示的文件模板上,该文件和words.txt放在同一路径下,
这就好了
|