realText() public method

Depending on the $maxNbChars, returns a random valid looking text. The algorithm generates a weighted table with the specified number of words as the index and the possible following words as the value.
public realText ( integer $maxNbChars = 200, integer $indexSize = 2 ) : string
$maxNbChars integer Maximum number of characters the text should contain (minimum: 10)
$indexSize integer Determines how many words are considered for the generation of the next word. The minimum is 1, and it produces the higher level of randomness, although the generated text usually doesn't make sense. Higher index sizes (up to 5) produce more correct text, at the price of less randomness.
return string
Beispiel #1
0
 public function realText($maxNbChars = 200, $indexSize = 2)
 {
     $text = parent::realText($maxNbChars, $indexSize);
     $text = str_replace('„', '', $text);
     return str_replace('“', '', $text);
 }