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 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 sharing is_rtl function with us.
Its very fast. I just tested it and the following are results.
// Total Execution Time for is_rtl: 0.34484505653381 Seconds for 100000 iterations
as compared to my own function
// Total Execution Time for my_is_rtl: 12.653607130051 Seconds for 100000 iterations