2012

function apocalpse() {
     foreach($earth->population as $personIndex => $person) {
          if($person->gotLuck == true) {
               $ark[] = $person;
          }
          elseif($person->gotRidiculousLuck == true) {
               $earth->countries("China")->moveUnder($person);
               $ark[] = $person;
          }
          else {
               unset($earth->population[$personIndex]);
          }
     }
}

}

Vote up this code3