Parašė Narysx· 2009 Sau. 5 19:01:24
#18
Pasidariau tokią funkciją:
// Trim a line of text to a preferred lengthh
function onelink($text, $length) {
$dec = array("\"", "'", "\\", '\"', "\'", "<", ">");
$enc = array(""", "'", "\", """, "'", "<", ">");
$text = str_replace($enc, $dec, $text);
if (strlen($text) > $length) $text = substr($text, 0, ($length-3)).".";
$text = str_replace($dec, $enc, $text);
return $text;
}
Rašau:
echo onelink("$names",1)." $namexs";
Ir man vaizduoja:
Dwya. Wade, nors tūrėtų vaizduoti
D. Wade.
Redagavo Narysx· 2009 Sau. 5 19:01:03