You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?php/* * Author: Christophe Dri * * Might be commented soon, or, please contribute. */include('phptextcat.class.php');$str = "Évalue chaque valeur du tableau input en les passant à la fonction utilisateur. Si la fonction utilisateur retourne TRUE, la valeur courante du tableau input est retourné dans le tableau résultant. Les clés du tableau sont préservées.";$analyser = new PhpTextCat('fr', 'en');echo($analyser->guessLanguage($str) . "\n");echo("\n");echo($str . "\n");echo("\n");print_r($analyser->rateText($str));