This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class FunPlay | |
{ | |
public function getCombinedList($total, $set, $func1, $func2, $count = 0) | |
{ | |
$return = []; | |
while ($count < $total) { | |
array_push( |