PHP code example of hamidgh83 / language-detection
1. Go to this page and download the library: Download hamidgh83/language-detection library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
hamidgh83 / language-detection example snippets
$ld->detect('Mag het een onsje meer zijn?')->bestResult();
$ld->getSupportLanguages();
$lng = new Language();
$result = $lng->detect('This is an example text.');
$props = $lng->getLanguageProps($result->bestResult());