如何从数据库中截断多行文本? (html/css/php)
Posted
技术标签:
【中文标题】如何从数据库中截断多行文本? (html/css/php)【英文标题】:How can I truncate the multiline text from the database? (html/css/php) 【发布时间】:2021-02-01 14:28:51 【问题描述】:如何截断从 mysql 数据库中获取的数据?
我的html代码:
<div class="content">
<h3 class="title"><?php echo $title; ?></h3>
<p class="main" id="main"><?php echo $content; ?></p>
<a href="#"><i class="fa fa-arrow-right"></i> Artikel lesen</a>
</div>
【问题讨论】:
发布完整代码。$title
和 $content
是什么?
【参考方案1】:
如果要截断列的值,可以直接使用left
或right
函数来实现。您需要分别从左侧或右侧传递要获取的字符数量
例如:left()
select left('left function',4) as content;
output: left
例如:right()
select right('left function', 4) as content;
output: tion
如果content
是您的专栏,那么您可以使用以下 sn-p:
select left(content,10) as content from <YourTableName>;
【讨论】:
以上是关于如何从数据库中截断多行文本? (html/css/php)的主要内容,如果未能解决你的问题,请参考以下文章