function Random::paragraphs
Generate paragraphs separated by double new line.
Parameters
int $paragraph_count: The number of paragraphs to create. Defaults to 12.
Return value
string
File
- 
              core/lib/ Drupal/ Component/ Utility/ Random.php, line 308 
Class
- Random
- Defines a utility class for creating random data.
Namespace
Drupal\Component\UtilityCode
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;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
