PHP code example of amirbagh75 / chalqoz

1. Go to this page and download the library: Download amirbagh75/chalqoz library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

amirbagh75 / chalqoz example snippets




mirbagh75\Chalqoz\Chalqoz;

$newText = Chalqoz::convertEnglishNumbersToPersian('123456789');
echo($newText."\n"); // ۱۲۳۴۵۶۷۸۹

$newText = Chalqoz::convertPersianNumbersToEnglish('۱۲۳۴۵۶۷۸۹');
echo($newText."\n"); // 123456789

$newText = Chalqoz::convertPersianNumbersToEnglish('امیرحسین بقایی ۲۴ سال دارد.');
echo($newText."\n"); // امیرحسین بقایی 24 سال دارد

$newText = Chalqoz::convertEnglishNumbersToPersian('امیرحسین بقایی 24 سال دارد.');
echo($newText."\n"); // امیرحسین بقایی ۲۴ سال دارد


convertEnglishNumbersToPersian(string $text): string
convertPersianNumbersToEnglish(string $text): string

// Shortened version of functions names:

enNumsToFa(string $text): string
faNumsToEn(string $text): string