예제 #1
0
 /**
  ** Returns fuzz text, with the parameter indicating approximately how many lines of text you want.
  */
 public static function makeFuzz($maxtypes = 2)
 {
     $page = "";
     for ($k = 0; $k < $maxtypes; $k++) {
         $page .= wikiFuzz::loop();
     }
     return $page;
 }