Last active
September 15, 2022 03:26
-
-
Save khal3d/4648574 to your computer and use it in GitHub Desktop.
Check if there RTL characters (Arabic, Persian, Hebrew)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Is RTL | |
* Check if there RTL characters (Arabic, Persian, Hebrew) | |
* | |
* @author Khaled Attia <[email protected]> | |
* @param String $string | |
* @return bool | |
*/ | |
function is_rtl( $string ) { | |
$rtl_chars_pattern = '/[\x{0590}-\x{05ff}\x{0600}-\x{06ff}]/u'; | |
return preg_match($rtl_chars_pattern, $string); | |
} | |
// Arabic Or Persian | |
var_dump(is_rtl('نص عربي أو فارسي')); | |
// Hebrew | |
var_dump(is_rtl('חופש למען פלסטין')); | |
// Latin | |
var_dump(is_rtl('Hello, World!')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for your great work.