mahdimajidzadeh / persianalize
Laravel package for normalize Persian text
Installs: 2 829
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 3
Forks: 1
Open Issues: 0
Requires
- php: ~5.6
- illuminate/support: ~5.1
Requires (Dev)
- phpunit/phpunit: >=5.4.3
- squizlabs/php_codesniffer: ^2.3
This package is auto-updated.
Last update: 2024-12-29 05:27:20 UTC
README
Persianalize use to normalize Persian input and remove arabic and other similar characters.
Install
Via Composer
$ composer require mahdimajidzadeh/persianalize
If you do not run Laravel 5.5 (or higher), then add the service provider in config/app.php:
MahdiMajidzadeh\Persianalize\PersianalizeServiceProvider:class
If you do run the package on Laravel 5.5+, package auto-discovery takes care of the magic of adding the service provider.
Usage
$result = Persian::numbers_fa('123٤٥٦'); // return ۱۲۳۴۵۶ $result = Persian::numbers_en('۱۲۳٤٥٦'); // return 123456 $result = Persian::text('ي ڲ ڬ'); // return ی گ ک $result = Persian::persian($text); // make texts and numbers Persian $result = Persian::standard($text); // make texts Persian and numbers English
Change log
Please see CHANGELOG for more information on what has changed recently.