Is there any built in method or a library available in php to check what type of writing script/s is used in a given text (Latin, Arabic, Cyrillic, Devanagari...).
Note: I do not want to detect the language/s of the text.
I have searched and found only the following library:
https://github.com/LasseRafn/php-string-script-language
However, this library is useful when we already have some idea of the script. For example:
StringScript::isChinese('你好世界。')
What if the text is in multiple scripts or we have no idea of the writing script? (I cannot even recognize writing scripts of all world languages).