<?php
$detay = strip_tags($row_haber_ana['haber_aciklama']);
$uzunluk = strlen($detay);
$harf = 150;
if ($uzunluk > $harf)
{
$detay = substr($detay,0,$harf) . “devamı”;
}
echo $detay;
?>