mirror of
https://github.com/php/php-src.git
synced 2025-01-21 19:24:16 +08:00
d90394851c
Implements part of Unicode TR36 and TR39
20 lines
493 B
PHP
Executable File
20 lines
493 B
PHP
Executable File
--TEST--
|
|
spoofchecker confusable tests
|
|
--SKIPIF--
|
|
<?php if(!extension_loaded('intl')) print 'skip'; ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$url = "http://www.payp\xD0\xB0l.com";
|
|
|
|
$x = new Spoofchecker();
|
|
echo "Checking if words are confusable\n";
|
|
var_dump($x->areConfusable("hello, world", "goodbye, world"));
|
|
var_dump($x->areConfusable("hello, world", "hello, world"));
|
|
var_dump($x->areConfusable("hello, world", "he11o, wor1d"));
|
|
?>
|
|
--EXPECTF--
|
|
Checking if words are confusable
|
|
bool(false)
|
|
bool(true)
|
|
bool(true)
|