This package helps you to resolve the language in a URL.
- php ^7.4 || >=8.0
You can require the package through Composer.
composer require roelofjan-elsinga/url-language-extractor
You can extract the language from the URL by using the following code:
$short_code = LanguageExtractor::forUrl('/page/en/content-page')
->setAcceptedShortCodes(['en', 'nl', 'es', 'fr'])
->extract();
print $short_code; // 'en'
Do you want to contribute to this project? Great! You can contribute by working on the following things:
- Adding additional ways to detect a language from a URL
- Writing tests to detect edge cases
- Filing issues for new features or bugs
You can run tests by running vendor/bin/phpunit
in your terminal.