X7ROOT File Manager
Current Path:
/home/u408670528/domains/vittoriabeltrame.com/public_html/includes
home
/
u408670528
/
domains
/
vittoriabeltrame.com
/
public_html
/
includes
/
๐
..
๐
conex.php
(920 B)
๐
conexiones.php
(192 B)
๐
footer.php
(2.64 KB)
๐
footer2.php
(2.44 KB)
๐
head.php
(2.28 KB)
๐
header.php
(2.54 KB)
๐
truncate.php
(607 B)
Editing: truncate.php
<?php // http://www.pjgalbraith.com/truncating-text-html-with-php/ // es la funciรณn que nos permite coger una parte de texto sin cortar las palabras function truncate_words($text, $limit, $ellipsis = '...') { $words = preg_split("/[\n\r\t ]+/", $text, $limit + 1, PREG_SPLIT_NO_EMPTY|PREG_SPLIT_OFFSET_CAPTURE); if (count($words) > $limit) { end($words); //ignore last element since it contains the rest of the string $last_word = prev($words); $text = substr($text, 0, $last_word[1] + strlen($last_word[0])) . $ellipsis; } return $text; } ?>
Upload File
Create Folder