php-src/ext/intl/tests/spoofchecker_002.phpt

21 lines
527 B
Plaintext
Raw Normal View History

--TEST--
spoofchecker confusable tests
--SKIPIF--
2012-03-25 20:49:19 +00:00
<?php if(!extension_loaded('intl') || !class_exists("Spoofchecker")) 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)
2012-03-25 20:49:19 +00:00
bool(true)