Snippets

Dan Bochichio Text String Randomizer

Created by Dan Bochichio last modified Dan Bochichio
1
2
3
4
5
6
7
8
9
<?php 
function randomAnchor()
{
$anchors = array('keyword 1', 'keyword 2', 'keyword 3', 'keyword 4', 'keyword 5');
return $anchors[0,rand(count($anchors)-1)];
}
?>

<p><?php echo randomAnchor();?></p>

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.