(22 май 2016, 20:37) (
1/
0)
[
1]
[STEM],
<?php
echo truncate('текст', 100, $a['id']);
?>
(22 май 2016, 20:32) (
0/
0)
[
0]
<?php
function truncate($text, $length = 100, $id)
{
$end = '<a href="/post/' . $id . '/">Читать полностью »</a>';
if (strlen($text) > $length) {
$text = substr($text, 0, $length) . $end;
}
return $text;
}
?>