Simple PHP Library for DeepL API. You can translate one or multiple text strings (up to 50) per request.
๐ฉ๐ช๐ฌ๐ง๐บ๐ธ๐ช๐ธ๐ฒ๐ฝ๐ซ๐ท๐ฎ๐น๐ฏ๐ต๐ณ๐ฑ๐ต๐ฑ๐ต๐น๐ง๐ท๐ท๐บ๐จ๐ณ
Use composer if you want to use this library in your project.
composer require babymarkt/deepl-php-lib
Create an instance with your auth key:
$authKey = '<AUTH KEY>';
$deepl = new DeepL($authKey);
Translate one Text:
$translatedText = $deepl->translate('Hallo Welt', 'de', 'en');
echo $translatedText[0]['text'].PHP_EOL;
Translate multiple Texts:
$text = array(
'Hallo Welt',
'Wie geht es dir',
'Macht doch einfach mal'
);
$translations = $deepl->translate($text, 'de', 'en');
foreach ($translations as $translation) {
echo $translation['text'].PHP_EOL;
}
param | Description |
---|---|
$text | Text to be translated. Only UTF8-encoded plain text is supported. The parameter may be specified as an Array and translations are returned in the same order as they are requested. Each of the array values may contain multiple sentences. Up to 50 texts can be sent for translation in one request. |
$sourceLang | Language of the text to be translated. default: de |
$targetLang | The language into which the text should be translated. default: en |
$tagHandling | Sets which kind of tags should be handled. Options currently available: "xml" |
$ignoreTags | Array of XML tags that indicate text not to be translated. default: null |
$formality | Sets whether the translated text should lean towards formal or informal language. This feature currently works for all target languages except "EN" (English), "EN-GB" (British English), "EN-US" (American English), "ES" (Spanish), "JA" (Japanese) and "ZH" (Chinese). Possible options are: "default" (default) "more" - for a more formal language "less" - for a more informal language |
$splitSentences | Array of XML tags which always cause splits default: null |
$preserveFormatting | Sets whether the translation engine should respect the original formatting, even if it would usually correct some aspects. Possible values are: "0" (default) "1" The formatting aspects affected by this setting include: Punctuation at the beginning and end of the sentence Upper/lower case at the beginning of the sentence |
$nonSplittingTags | Comma-separated list of XML tags which never split sentences. default: null |
$outlineDetection | See: https://www.deepl.com/docs-api/handling-xml/outline-detection/ default: 1 |
$splittingTags | Array of XML tags which always cause splits. default: null |
In Version 2 we removed the internal List of supported Languages. Instead, you can now get an array with the supported Languages directly form DeepL:
$languagesArray = $deepl->languages();
foreach ($languagesArray as $language) {
echo 'Name: '.$language['name'].' Api-Shorthand: '.$language['language'].PHP_EOL;
}
You can check for the supported Source-Languages:
$sourceLanguagesArray = $deepl->languages('source');
foreach ($sourceLanguagesArray as $srouceLanguage) {
echo 'Name: '.$srouceLanguage['name'].' Api-shorthand: '.$srouceLanguage['language'].PHP_EOL;
}
Check for the supported Target-Languages:
$targetLanguagesArray = $deepl->languages('target');
foreach ($targetLanguagesArray as $targetLanguage) {
echo 'Name: '.$targetLanguage['name'].' Api-Shorthand: '.$targetLanguage['language'].PHP_EOL;
}
You can now check ow much you translate, as well as the limit:
$usageArray = $deepl->usage();
echo 'You have used '.$usageArray['character_count'].' of '.$usageArray['character_limit'].' in the current billing period.'.PHP_EOL;
Run PHP_CodeSniffer Tests:
composer cs
Run PHPMD Tests:
composer md
Run PHPUnit Tests:
composer test
Run all tests:
composer test:all
The MIT License (MIT). Please see License File for more information.