国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 開(kāi)發(fā) > PHP > 正文

PHP技巧:PHP腳本中關(guān)于拼寫檢查函數(shù)庫(kù)

2024-05-04 23:05:22
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

aspell_new :  載入一個(gè)新的字典。

aspell_check :  檢查一個(gè)單字。

aspell_check-raw :  檢查一個(gè)單字,即使拼錯(cuò)也不改變或修正。

aspell_suggest :  檢查一個(gè)單字,并提供拼寫建議。

aspell_new

載入一個(gè)新的字典。

語(yǔ)法:int aspell_new(string master, string personal);

返回值:整數(shù)

函數(shù)種類:資料處理

內(nèi)容說(shuō)明 本函數(shù)載入一個(gè)新的字典,并賦與一個(gè)新的身份值 (整數(shù)),以供程序中使用。

使用范例 $aspell_link=aspell_new("english");

aspell_check

檢查一個(gè)單字。

語(yǔ)法:boolean aspell_check(int dictionary_link, string word);

返回值:布爾值

函數(shù)種類:資料處理

內(nèi)容說(shuō)明 本函數(shù)檢查單字的拼寫。若拼寫正確則返回 true,不正確則返回 false。

使用范例

以下為引用的內(nèi)容:
$aspell_link=aspell_new("english");
if (aspell_check($aspell_link,"testt")) {
echo "this is a valid spelling";
} else {
echo "sorry, wrong spelling";
}
aspell_check-raw

檢查一個(gè)單字,即使拼錯(cuò)也不改變或修正。

語(yǔ)法:boolean aspell_check_raw(int dictionary_link, string word);

返回值:布爾值

函數(shù)種類:資料處理

內(nèi)容說(shuō)明

本函數(shù)檢查單字的拼寫。若拼寫正確則返回 true,不正確則返回 false。本函數(shù)不會(huì)改變或者修正使用者的拼寫。

使用范例

以下為引用的內(nèi)容:
$aspell_link=aspell_new("english");
if (aspell_check_raw($aspell_link,"testt")) {
echo "this is a valid spelling";
} else {
echo "sorry, wrong spelling";
}
aspell_suggest

檢查一個(gè)單字,并提供拼寫建議。

語(yǔ)法:array aspell_suggest(int dictionary_link, string word);

返回值:數(shù)組

函數(shù)種類:資料處理

內(nèi)容說(shuō)明

本函數(shù)檢查單字的拼寫。并給予可能的拼法及正確的建議,以數(shù)組類型將結(jié)果返回。

使用范例

以下為引用的內(nèi)容:

<?
$aspell_link=aspell_new("english");
if (!aspell_check($aspell_link,"testt")) {
$suggestions=aspell_suggest($aspell_link,"testt");
for($i=0; $i < count($suggestions); $i++) {
echo "possible spelling: " . $suggestions[$i] . "<br>";
}
}
?>

  • 本文來(lái)源于網(wǎng)頁(yè)設(shè)計(jì)愛(ài)好者web開(kāi)發(fā)社區(qū)http://www.html.org.cn收集整理,歡迎訪問(wèn)。
  • 發(fā)表評(píng)論 共有條評(píng)論
    用戶名: 密碼:
    驗(yàn)證碼: 匿名發(fā)表
    主站蜘蛛池模板: 个旧市| 玛多县| 岢岚县| 高雄县| 方山县| 城固县| 陆丰市| 哈巴河县| 平邑县| 南宫市| 鄂州市| 富蕴县| 南部县| 南木林县| 东光县| 安国市| 出国| 盐津县| 获嘉县| 浑源县| 凯里市| 汉源县| 哈尔滨市| 呼图壁县| 通河县| 竹山县| 江口县| 沙湾县| 阿勒泰市| 彭阳县| 河北区| 泽库县| 额尔古纳市| 寻甸| 曲周县| 绍兴市| 防城港市| 巴青县| 邢台市| 恩平市| 阿图什市|