$productstr = "Nodrive <br> testing the functionality"
strlen($productstr) > 14 ? substr($productstr, 0, 14)."..." : $productstr,
問題はbr
でも文字としてカウントし、私はbr
をカウントしないための解決策は、文字である必要<br>特殊文字以外のstrlenの計算方法は?
Nodrive
...
が表示されています。表示する必要があります
NoDrive ...
ありがとうございます。
長さを計算する前にhtmlタグを削除します。 – jeroen
'str_replace( '
'、$ productstr)'のstrlenを計算します。もっと必要な場合は、['strip_tags'](http://php.net/manual/en/function.strip-tags.php)を使用してください。 –