Skip to content

a PHP function that checks whether two strings match completely/partially in terms of diacritics

License

Notifications You must be signed in to change notification settings

ATablas/matchHarakat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

matchHarakat

هذه مكتبة صغيرة مبنية على بي إتش بي والغرض منها التحقق من المطابقة الجزئية أو الكلية لسلسلتين نصيتين من ناحية الحركات.
الدالة الرئيسية المستخدمة تعتمد على دالة أخرى موجودة في الملف نفسه، ضرورية للتطابق مع المحارف العربية.
This is a pure PHP library that has a function to check whether or not two strings match completely/partially in terms of diacritics.
The function used depends on another function for compatibility with UTF-8 strings.

How to use the library? كيف تستخدم المكتبة؟

ببساطة ضمن الملف كما يلي:

Simply include it in your PHP script as follows:
require 'harakat_lib.php';
ثم تأكد من أن السلسلتين النصيتين متطابقتان كما يلي:
Then check the 2 strings matching as follows:
if( harkatMatching($first_string, $second_string) )
{
  //do something
}

About

a PHP function that checks whether two strings match completely/partially in terms of diacritics

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages