Generate paragraphs separated by double new line.
int $paragraph_count: The number of paragraphs to create. Defaults to 12.
string
public function paragraphs($paragraph_count = 12) { $output = ''; for ($i = 1; $i <= $paragraph_count; $i++) { $output .= $this->sentences(mt_rand(20, 60)) . "\n\n"; } return $output; }