有的朋友喜歡把dedecms文件保存目錄直接用英文,那么可以通過(guò)以下方法。
修改文件:dede/templets/catalog_add.htm
在這個(gè)函數(shù)下方增加
functionCheckgoogle(){
vargoogle=document.getElementById('google');
vartpobj=document.getElementById('typedir');
varupinyin=document.getElementById('pinyin');
if(google.checked)tpobj.style.display="none";
elsetpobj.style.display="block";
if(google.checked)upinyin.style.display="none";
elseupinyin.style.display="block";
}
搜索
<inputclass="np"id="upinyin"onclick="CheckTypeDir()"type="checkbox"name="upinyin"value="1"/>
替換為
<spanid="pinyin"><inputclass="np"id="upinyin"onclick="CheckTypeDir()"type="checkbox"name="upinyin"value="1"/>拼音</span>
<spanid="en"><inputclass="np"id="google"onclick="Checkgoogle()"type="checkbox"name="google"value="1"/>英文</span>
dede/catalog_add.php
搜索
在其下方增加
//用谷歌翻譯英文
if($google==1||$typedir=='')
{
$typedir=googleTran(stripslashes($typename));
}
/include/extend.func.php
最末尾增加
functiongoogleTran($text){
if(empty($text))return"";
$wf=@file_get_contents('http://translate.google.cn/translate_t?sl=zh-CN&tl=en&text='.$text.'#');
if(false===$wf||empty($wf))
{
returnfalse;
}
$return="";
$star="style.backgroundColor='\#fff'\&;>";
$end="
";
$p="#{$star}(.*){$end}#iU";//i表示忽略大小寫,U禁止貪婪匹配
if(preg_match_all($p,$wf,$rs))
{
return$rs[1][0];
}
}