国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

PHP隨機生成中文段落示例【測試網(wǎng)站內(nèi)容時使用】

瀏覽:135日期:2022-09-10 16:31:33

本文實例講述了PHP隨機生成中文段落。分享給大家供大家參考,具體如下:

在創(chuàng)建網(wǎng)站的時候,很多時候都需要輸入一些中文的段落來填充頁面,大多數(shù)會是找一些新聞之類的來復(fù)制粘貼。

以下代碼是利用php來隨機生成一些中文段落,以便用來測試。

GBK版:

<?phpheader(’Content-type:text/html;charset=gbk’);function createWords($words = 128){ $seperate = array(',','。','!','?',';'); $strings = ’’; for ($i=0; $i<$words; $i++) { $strings .= chr(rand(0xB0,0xD6)).chr(rand(0xA1,0xFE)); if (fmod($i, 18) > rand(10, 20)) { $strings .= $seperate[rand(0, 4)]; } } return $strings;}$paras = rand(1, 10);$strings = ’’;for($i=0; $i<$paras; $i++){ $strings .= ’&nbsp;&nbsp;&nbsp;&nbsp;’.createWords(rand(100, 500)).’<br />’;}?><!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html><head> <meta http-equiv='Content-Type' content='text/html; charset=gbk' /> <title>隨機生成中文段落</title> <style type='text/css'> body{ width: 960px; margin: 0 auto; } h1 { text-align: center; } </style></head><body> <h1>刷新頁面可得到不同結(jié)果</h1> <div><?php echo $strings;?></div></body>

UTF8版:

<?phpfunction createWords($words = 128){ $seperate = array(',', '。', '!', '?', ';'); $strings = ’’; for ($i=0; $i<128; $i++) { $strings .= iconv(’utf-16’, ’utf-8’, chr(rand(0x00, 0xFF)).chr(rand(0x4E, 0x99))); if (fmod($i, 18) > rand(10, 20)) { $strings .= $seperate[rand(0, 4)]; } } return $strings;}$paras = rand(1, 10);$strings = ’’;for($i=0; $i<$paras; $i++){ $strings .= ’&nbsp;&nbsp;&nbsp;&nbsp;’.createWords(rand(100, 500)).’<br />’;}?><!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'><head> <meta http-equiv='Content-Type' content='text/html; charset=utf-8' /> <title>測試</title> <style type='text/css'> body{ width: 960px; margin: 0 auto; } h1 { text-align: center; } </style></head><body> <h1>刷新頁面可得到不同結(jié)果</h1> <div><?php echo $strings;?></div></body></html>

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP編碼與轉(zhuǎn)碼操作技巧匯總》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《php常用函數(shù)與技巧總結(jié)》及《PHP錯誤與異常處理方法總結(jié)》

希望本文所述對大家PHP程序設(shè)計有所幫助。

標簽: PHP
相關(guān)文章:
主站蜘蛛池模板: 镇雄县| 滁州市| 临泽县| 长垣县| 河西区| 潜江市| 通州市| 南岸区| 香港 | 平乐县| 册亨县| 治县。| 兴安盟| 东至县| 沅江市| SHOW| 牡丹江市| 永年县| 永宁县| 新宁县| 色达县| 合作市| 远安县| 鄂伦春自治旗| 花莲市| 枣阳市| 万载县| 五指山市| 柘荣县| 上杭县| 武川县| 凤庆县| 定南县| 太仆寺旗| 曲靖市| 洛扎县| 神池县| 增城市| 措勤县| 西盟| 深泽县|