Searched refs:maxchars (Results 1 – 2 of 2) sorted by relevance
21 public static function getCookieHTML($cookieID, $maxlines = 0, $maxchars = 0) argument24 $cookie = self::getSmallCookie($cookieID, $maxlines, $maxchars);41 public static function getSmallCookie($cookieID, $maxlines, $maxchars) argument46 if ($maxchars < 1) $maxlines = 250;51 } while (($lines > $maxlines || strlen($cookie) > $maxchars) && $tries++ < $runaway);
287 function dir_trimPageTitle($title, $maxchars=19) { argument288 if (strlen($title) > $maxchars) return substr($title,0,$maxchars).'...';