Skip to content

Instantly share code, notes, and snippets.

@egulhan
Created September 20, 2018 11:22
Show Gist options
  • Save egulhan/15099bc344e3b584603a4942bc50f5a9 to your computer and use it in GitHub Desktop.
Save egulhan/15099bc344e3b584603a4942bc50f5a9 to your computer and use it in GitHub Desktop.
Check if text contains any arabic characters using php
<?php
public static function checkTextContainAnyArabicCharacters($text)
{
return preg_match('/[^\x{0600}-\x{06FF}]/u', $text);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment