(PHP 5 >= 5.4.0, PHP 7, PHP 8, PECL intl >= 2.0.0)
Spoofchecker::areConfusable — 检查给定的字符串是否可能混淆
检查两个给定的字符串是否容易被误认。
string1
要检查的第一个字符串。
string2
要检查的第二个字符串。
errorCode
此变量通过引用设置为 int,包含错误(如果有)。
示例 #1 Spoofchecker::areConfusable() 示例
<?php
$checker = new Spoofchecker();
$checker->areConfusable('google.com', 'goog1e.com'); // true
// 小写字母 l 可能与数字 1 混淆
$checker->areConfusable('google.com', 'g00g1e.com'); // false
// 零 (0) 不易与字母 "o" 混淆