Annotation of embedaddon/php/ext/standard/tests/strings/bug47443.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #47443 (metaphone('scratch') returns wrong result)
        !             3: --FILE--
        !             4: <?php
        !             5: 
        !             6: var_dump(metaphone("scratch"));
        !             7: var_dump(metaphone("scrath"));
        !             8: var_dump(metaphone("scratc"));
        !             9: 
        !            10: ?>
        !            11: --EXPECTF--
        !            12: %string|unicode%(4) "SKRX"
        !            13: %string|unicode%(4) "SKR0"
        !            14: %string|unicode%(5) "SKRTK"

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>