参见英文答案 > How do you pull first 100 characters of a string in PHP 6个
我在数据库表,标题和描述中有两个字段.我在循环中显示PHP中的数据.
我的代码:
$sql = "select * from sightseeing";
$i = 1;
$res = MysqL_query($sql,$conn);
if( MysqL_num_rows($res) > 0) {
while($row = MysqL_fetch_array($res))
{
echo "
我想只显示描述字段中的前50个字符.怎么做?
最佳答案