DedeCMS程式使用拼音首字母做欄目名稱的方法

2022-07-23 02:12:09 字數 700 閱讀 4579

dedecms織夢程式預設使用拼音為儲存目錄的時候使用的是中文全拼,當遇到欄目名稱比較長的時候目錄名稱看起來有點冗長,這時候大多數站長喜歡使用拼音首字母作為欄目的儲存目錄,那麼就需要修改 dede/catalog.add.php檔案 

85行 $toptypedir =getpinyin(stripslashes($toptypename));

修改為 $toptypedir = getpinyin(stripslashes($toptypename),1

);108 行 $typedir = $toptypedir.』/』.getpinyin(stripslashes($v));

修改為 $typedir = $toptypedir.』/』.getpinyin(stripslashes($v),1

);134行 $toptypedir =getpinyin(stripslashes($toptypename));

修改為 $toptypedir = getpinyin(stripslashes($toptypename),1

);187行 $typedir =getpinyin(stripslashes($typename));

修改為 $typedir = getpinyin(stripslashes($typename),1);

修改完成後趕快儲存後新增幾個欄目頁試試吧,是不是已經搞定了欄目拼音首字母命名呢呢? 

SQL獲取拼音首字函式

建立函式 create function f getpy str nvarchar 4000 returns nvarchar 4000 as begin declare strlen int,renvarchar 4000 declare ttable chr nchar 1 collate ch...

漢字轉拼音或轉拼音首字母

漢字轉拼音或轉拼音首字母 public class chinesetospell private static string pyname new string 把漢字轉換成拼音 全拼 漢字字串 轉換後的拼音 全拼 字串 public static string characterconvertst...

漢字轉拼音或轉拼音首字母

漢字轉拼音或轉拼音首字母 public class chinesetospell private static string pyname new string 把漢字轉換成拼音 全拼 漢字字串 轉換後的拼音 全拼 字串 public static string characterconvertst...