發一個php簡單的偽原創程式,配合商城採集用的

來源:互聯網
上載者:User

複製代碼 代碼如下:<?php
$arr=array();
$arr['好']='壞';
$arr['不好']='不壞';
$arr['壞']='好';
$arr['不壞']='不好';
$str="我們好不好";
echo strtr($str,$arr);
//輸出我們壞不壞
?>

於是問題就很好解決了。自己構建了一個資料庫來收集同義字
關鍵的兩個程式是匯入資料庫和匯出檔案。
word2db.php 從檔案匯入到資料庫中 複製代碼 代碼如下:<?php
//將檔案中的數組寫入到資料庫中
require("conn.php");
@require("keyword.php");
mysql_query("delete from ".table('keywords')."");
foreach($keyword as $key=>$val)
{
//$key=iconv('utf-8','gbk',$key);
//$val=iconv('utf-8','gbk',$val);
$pinyin=getfirstchar($key);
$ct=mysql_query("select count(*) from ".table('keywords')." where k1='$key' and k2='$val'");//檢測是否已經存在
$ct=@mysql_fetch_array($ct);
$ct=$ct[0];
if($ct<=0)//不存在則插入
{
mysql_query("insert into ".table('keywords')."(k1,k2,pinyin) values('$key','$val','$pinyin')") or die("出錯");
}
}
echo "插入成功!";
?>

db2word.php 從資料庫匯入到檔案 複製代碼 代碼如下:<?php
//將資料庫以數組形式寫到檔案中
require("conn.php");
$res=mysql_query("select k1,k2 from ".table('keywords')." ") ;
$str="<?php \r\n ";
while($rs=mysql_fetch_array($res))
{
$str .="\$keyword['".$rs[0]."']='".$rs[1]."';\r\n";
}
$str.="?>";
file_put_contents("keyword.php",$str);
echo "匯出成功";
?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.