0byt3m1n1
Path:
/
data
/
0
/
0
/
6
/
46
/
6861
/
user
/
7034
/
cgi-bin
/
php
/
lib
/
[
Home
]
File: modifier.trim_to.php
<?php function smarty_modifier_trim_to($text, $len) { $len = intval($len); if ($len < strlen($text)) { $text = substr($text, 0, $len); } return $text; } ?>