gpt4 book ai didi

php - 使用 echo 显示表中的前 100 个字符

转载 作者:行者123 更新时间:2023-11-29 22:21:19 26 4
gpt4 key购买 nike

下午,

天气真好,不是吗?无论如何,好吧..

这是我的问题:(见照片)http://prntscr.com/7drmc5

当然,这不是很用户友好,我试图仅显示该字段的前 100 个字符,并带有中断。

这是我的代码:

echo '<tbody>
<tr class="server glossed site">
<td class="rank hidden-sm hidden-xs">
'.$rank.'</td>
<td class="description"><p><a href="out.php?id='.$row['id'].'" target="_blank">'.$row['name'].'<br /><p><a href="out.php?id='.$row['id'].'" target="_blank"><img src="'.$row['banner'].'" width="470" height="60"></a></p></a><br><p class="hidden-sm hidden-xs">'.
$row['description'].'</p></td>
<td class="votes hidden-sm hidden-xs">'.$row['votes'].'</td>
</tr>
';

感谢所有尝试过这一点的人!

最佳答案

您可以使用substr你也可以使用 wordwrap 来包装它

//it would wrap your text upto 20 characters 
$wrappedText = wordwrap(substr($row['description'], 0, 100), 20, "<br />\n", true);

echo '<tbody>
<tr class="server glossed site">
<td class="rank hidden-sm hidden-xs">
'.$rank.'</td>
<td class="description"><p><a href="out.php?id='.$row['id'].'" target="_blank">'.$row['name'].'<br /><p><a href="out.php?id='.$row['id'].'" target="_blank"><img src="'.$row['banner'].'" width="470" height="60"></a></p></a><br><p class="hidden-sm hidden-xs">'.
$wrappedText.'</p></td>
<td class="votes hidden-sm hidden-xs">'.$row['votes'].'</td>
</tr>
';

关于php - 使用 echo 显示表中的前 100 个字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30682357/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com