Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

Copy Format Clear

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php $description = "аа бб ввffffffв ггг ддfд еее жжffж ззз иии ккк ллл ммм ннн ооо ппп ррр ссс ттт"; var_dump(mb_strlen($description)); $descr_limit = 40; $descr_len = mb_strlen($description); if ($descr_len > $descr_limit) { $descr_offset = $descr_len - $descr_limit + 3; $description = mb_substr($description, 0, mb_strrpos($description, " ", -$descr_offset)); $description .= "..."; } var_dump($description, mb_strlen($description), $descr_offset);
Copy Clear