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

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

熱門標簽:濟源百應(yīng)電銷機器人聯(lián)系方式 正規(guī)電銷機器人系統(tǒng) 咸陽電銷 南京3D地圖標注 辦理400電話哪家好點 重慶外呼電銷系統(tǒng)多少錢 南寧電話外呼系統(tǒng)線路 邢臺400電話辦理 嘟嘟云外呼系統(tǒng)

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

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

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

GBK版:

?php
header('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版:

?php
function createWords($words = 128)
{
  $seperate = array(",", "。", "!", "?", ";");
  $strings = '';
  for ($i=0; $i128; $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生成隨機字符串(3種方法)
  • PHP生成不重復(fù)隨機數(shù)的方法匯總
  • PHP生成指定長度隨機數(shù)最簡潔的方法
  • php隨機生成數(shù)字字母組合的方法
  • PHP生成隨機用戶名和密碼的實現(xiàn)代碼
  • PHP 生成N個不重復(fù)的隨機數(shù)
  • 使用PHP批量生成隨機用戶名
  • php簡單生成隨機顏色的方法
  • php隨機輸出名人名言的代碼
  • PHP實現(xiàn)的英文名字全拼隨機排號腳本
  • PHP基于自定義類隨機生成姓名的方法示例

標簽:黃山 河南 隴南 唐山 平頂山 南通 通遼 武漢

巨人網(wǎng)絡(luò)通訊聲明:本文標題《PHP隨機生成中文段落示例【測試網(wǎng)站內(nèi)容時使用】》,本文關(guān)鍵詞  PHP,隨機,生成,中文,段落,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP隨機生成中文段落示例【測試網(wǎng)站內(nèi)容時使用】》相關(guān)的同類信息!
  • 本頁收集關(guān)于PHP隨機生成中文段落示例【測試網(wǎng)站內(nèi)容時使用】的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章