LoginSignup
0
0

More than 3 years have passed since last update.

php laravel blade 文字超過丸め方 (1分で読めます)

Posted at

やばい、、また詰まった、、、、

テキストの文字を丸めたい時ありますよね!
mb_strimwidth()を使うとできます。
ですが、文字数ではなく幅を考慮して文字列をカットしますのでご注意を!
指定の文字幅より長い場合にカットして最後に任意の文字列(...等)をつける事が可能に!!

コード
mb_strimwidth("おはようございます", 0, 15, "...");

こんな感じで使えます!!

詳しくはマニュアルに載ってます!

公式マニュアル

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0