Skip to content

amiad/gematria

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gematria

Simple Gematria library for PHP - convert Hebrew letters to numbers

Installation

$ composer require amiad/gematria

Usage

require_once __DIR__.'/vendor/autoload.php';

$text = 'אבג';

$gematria = new \Gematria\Gematria($text);
echo $gematria->get(); // print 6

// more option
echo $gematria;

License

GPL