Jump to content
php.lv forumi

Teksta garums


Mikijs

Recommended Posts

Vai ir kada funkcija ar kuru es varetu noteikt teksta garumu piemeram.. ja es velos lai neaprauj tekstu tad piemeram butu

 

$garums=kaut_kada_funkcija($teksts);
$limits=150;
if($garums>=$limits) echo "<marquee>$teksts</marquee>";
else echo $teksts;

Link to comment
Share on other sites

$lenght = strlen($text);
if($lenght < "200")
{
  $text = htmlspecialchars($text);
  $text = substr($text, 0, 200);
  $text = nl2br($text);
}

 

 

ari pirmo reiz dzirdu lai izmantotu marquee ja teksts ir garaks par ... simboliem.

Edited by 777
Link to comment
Share on other sites

×
×
  • Create New...