可能重复:
缩短 PHP 中的字符串(仅限完整单词)
在我使用的 substr 下面。从我的数据库中回显前 38 个字符。这段代码破坏了结尾的单词。
<?php echo substr(ucfirst($row['metadesc']),0,38); ?>...
像这样的输出。
news for today was null try tomo
如何在单词结尾后 38 个字符后停止字符串。
输出应该是这样的
news for today was null try tomorrow