Skip to content

Instantly share code, notes, and snippets.

View Aneurysm9's full-sized avatar

Anthony Mirabella Aneurysm9

View GitHub Profile
function map_array()
{
$names = array('Foo', 'Bar', 'Baz', 'Buzz');
$tweeps = array();
foreach ($names as $name) {
$tmp = new StdClass;
$tmp->name = $name;
$tmp->age = rand(2,7);