- Notifications
You must be signed in to change notification settings - Fork1
A library to convert ascii number like '3456' to geez number '፴፬፻፶፮' and vise versa
License
NotificationsYou must be signed in to change notification settings
geezify/geezify-php
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
This package is a library to convert ascii number like '3456' to geez number '፴፬፻፶፮' and vise versa.
Ge'ez (ግዕዝ) is an ancient South Semitic language that originated in Eritrea and the northern region of Ethiopia in the Horn of Africa. It later became the official language of the Kingdom of Aksum and Ethiopian imperial court.
clickhere to read more.
geezify
requiresPHP 5.6 or greater.
composer require geezify/geezify-php
If you never used
composer
before, please check outthis linkbefore you write anyPHP code again!
<?phprequire'vendor/autoload.php';useGeezify\Geezify;$geez = Geezify::create();echo$geez->toGeez(123) .PHP_EOL;// ፻፳፫echo$geez->toGeez(1234) .PHP_EOL;// ፲፪፻፴፬echo$geez->toGeez(1986) .PHP_EOL;// ፲፱፻፹፮echo$geez->toGeez(1000000) .PHP_EOL;// ፻፼// or you can even do the reverseecho$geez->toAscii('፻፳፫') .PHP_EOL;// 123echo$geez->toAscii('፲፪፻፴፬') .PHP_EOL;// 1234echo$geez->toAscii('፲፱፻፹፮') .PHP_EOL;// 1986echo$geez->toAscii('፻፼') .PHP_EOL;// 1000000
Geezify is released under the MIT Licence. See the bundled LICENSE file for details.
About
A library to convert ascii number like '3456' to geez number '፴፬፻፶፮' and vise versa
Topics
Resources
License
Stars
Watchers
Forks
Packages0
No packages published