Skip to content

Instantly share code, notes, and snippets.

@mindctrl
Forked from rileypaulsen/lipsum.php
Created August 24, 2014 13:33
Show Gist options
  • Save mindctrl/177d047a27d4d33af520 to your computer and use it in GitHub Desktop.
Save mindctrl/177d047a27d4d33af520 to your computer and use it in GitHub Desktop.
function random_lipsum($amount = 1, $what = 'paras') {
$start = rand(0,30);
return simplexml_load_file("http://www.lipsum.com/feed/xml?amount=$amount&what=$what&start=$start")->lipsum;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment