Skip to content

Instantly share code, notes, and snippets.

@jwoodcock
jwoodcock / MyMap.php
Created August 20, 2015 16:59
Map Class
class MyMap
{
public $user_id;
public $first_name;
public $last_name;
public $email;
public function __set($key, $val)
{
// can't set the user_id, that's a db item
@jwoodcock
jwoodcock / gist:887af60afde5ce3ad2d7
Created February 9, 2015 14:57
Functional PHP Test
<?php
class FunPlay
{
public function getCombinedList($total, $set, $func1, $func2, $count = 0)
{
$return = [];
while ($count < $total) {
array_push(