gpt4 book ai didi

php - 衡量一个词的发音?

转载 作者:IT王子 更新时间:2023-10-29 01:12:26 27 4
gpt4 key购买 nike

我正在修补域名查找器,并希望使用那些容易发音的单词。

示例:nameoic.com(差)与 namelet.com(好)。

我认为与 soundex 相关的东西可能是合适的,但看起来我不能用它们来产生某种比较分数。

获胜的 PHP 代码。

最佳答案

这是一个适用于最常见单词的函数......它应该会给你一个介于 1(根据规则的完美发音)到 0 之间的良好结果。

以下函数远非完美(它不太喜欢 Tsunami [0.857] 之类的词)。但它应该很容易根据您的需要进行调整。

<?php
// Score: 1
echo pronounceability('namelet') . "\n";

// Score: 0.71428571428571
echo pronounceability('nameoic') . "\n";

function pronounceability($word) {
static $vowels = array
(
'a',
'e',
'i',
'o',
'u',
'y'
);

static $composites = array
(
'mm',
'll',
'th',
'ing'
);

if (!is_string($word)) return false;

// Remove non letters and put in lowercase
$word = preg_replace('/[^a-z]/i', '', $word);
$word = strtolower($word);

// Special case
if ($word == 'a') return 1;

$len = strlen($word);

// Let's not parse an empty string
if ($len == 0) return 0;

$score = 0;
$pos = 0;

while ($pos < $len) {
// Check if is allowed composites
foreach ($composites as $comp) {
$complen = strlen($comp);

if (($pos + $complen) < $len) {
$check = substr($word, $pos, $complen);

if ($check == $comp) {
$score += $complen;
$pos += $complen;
continue 2;
}
}
}

// Is it a vowel? If so, check if previous wasn't a vowel too.
if (in_array($word[$pos], $vowels)) {
if (($pos - 1) >= 0 && !in_array($word[$pos - 1], $vowels)) {
$score += 1;
$pos += 1;
continue;
}
} else { // Not a vowel, check if next one is, or if is end of word
if (($pos + 1) < $len && in_array($word[$pos + 1], $vowels)) {
$score += 2;
$pos += 2;
continue;
} elseif (($pos + 1) == $len) {
$score += 1;
break;
}
}

$pos += 1;
}

return $score / $len;
}

关于php - 衡量一个词的发音?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1186213/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com