PHP code example of pishran / persian-string

1. Go to this page and download the library: Download pishran/persian-string 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/ */

    

pishran / persian-string example snippets


$persianString = new PersianString();

$persianString->convert('یك متن «تقریبا» فارسي, که شامل برخی حروف، اعداد 1 و ٤ و سایر کاراکترهای غیر فارسی مي باشد');

// یک متن «تقریبا» فارسی، که شامل برخی حروف، اعداد ۱ و ۴ و سایر کاراکترهای غیر فارسی می باشد

use Pishran\PersianString\PersianString;

$persianString = new PersianString(bool $withEmptyRules = false)

$persianString->convert(string $string): string

$persianString->getRules(): array

$persianString->addRule(string $key, string $value): void
$persianString->addRules(array $rules): void

$persianString->replaceRule(string $key, string $value): void
$persianString->replaceRules(array $rules): void

$persianString->deleteRule(string $key, string $value): void
$persianString->deleteRules(array $rules): void

$persianString->resetRules(): void
$persianString->forceResetRules(): void