显示简短版本

时间:2013-11-03 12:06:59

标签: php mysql

我正在尝试显示来自我的数据库的数据,尽管我只想显示它的预览。有没有什么方法可以让我有相同的长内容,但显示相同的东西,只缩短?

1 个答案:

答案 0 :(得分:1)

可能您必须使用substr()功能。

echo substr($string,$start_pos,$end_pos);

上面的内容将显示从起始位置到结束位置的字符串内容,作为参数指定。

实施例

$str = 'Example string';
if(strlen($str) > 5)
  echo substr($str,0,5).'....';//To show there is more content
else
  echo $str;

Ouptput

  

... Examp