Searched refs:maxchars (Results 1 – 2 of 2) sorted by relevance
18 static public function getCookieHTML($cookieID, $maxlines=0, $maxchars=0) { argument20 $cookie = self::getSmallCookie($cookieID, $maxlines, $maxchars);37 static public function getSmallCookie($cookieID, $maxlines, $maxchars){ argument41 if($maxchars < 1) $maxlines = 250;46 } 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).'...';