我有一个段落存储在数据库中,我只想从中获取前五行。它怎么做?
我应该将第一个数组转换为 srting 吗?如果是,那么该怎么做?
如果它的字符串比我可以做到这一点
$str='mayank kumar swami mayank kumar swami';
$var= strlen($str);
for($i=0;$i<8;$i++){
echo $str[$i];
}
- 或者如何通过 sql 从数据库中只获取 200 字?
我知道它可以通过 css 轻松显示在 Show first line of a paragraph nut 我想通过 php 或 sql 查询来完成
我在做什么
$article_result = mysql_query("SELECT * FROM article ORDER BY time DESC LIMIT 1",$connection);
if($article_result){
while($row = mysql_fetch_array($article_result))
{
echo "<div class=\"article_div\" >";
echo "<h4 id=\"article_heading\"><img src=\"images/new.png\" alt=\"havent got\" style=\"padding-right:7px;\">".$row['article_name']."</h4>";
echo"<h5 class=\"article_byline\">";
echo" by";
echo"<a href=\"#\">{$row['authore']}</a></h5>";
echo" <div id=\"article_about\"><p>{$row['content']}</p></div>";
//here i want to get only 2000 word from database (content)
echo "</div>";
}
}