_filter_url_trim
- Versions
- 5 – 7
_filter_url_trim($text, $length = NULL)
Shortens long URLs to http://www.example.com/long/url...
Code
modules/filter/filter.module, line 1170
<?php
function _filter_url_trim($text, $length = NULL) {
static $_length;
if ($length !== NULL) {
$_length = $length;
}
if (strlen($text) > $_length) {
$text = substr($text, 0, $_length) .'...';
}
return $text;
}
?>Login or register to post comments 