任意の文字以上の場合は省略する php

php
任意の文字以上の場合は省略する

if (mb_strlen($title) > 30 ) {
$title = mb_substr($title 0 30) . ... ;
}