i want to display short description of articles on home page. Descriptions are a mix of Thai and English language.
I am using this function for strlen
mb_strlen($str, 'UTF-8');
but this is not acurate as some descriptions end up in just one line and some goes upto 3 lines and I want to show descriptions of two lines.
If strlen is bigger than 155 i do
$descr = mb_strlen($descr, 'UTF-8') > 155 ? substr($descr, 0, 152) . '...' : $descr;
Thank You.