I am trying to create a module, to display a random article from a specific type in a sepecific category, with extra fields I specified...
* @modifed Richard Sumilang * @param string $datetime TimeStamp of the time you woud like to edit "YYYY-MM-DD HH:MM:SS". * @param integer $shit_amount The amount you want to shit * @param string $shift_unit Unit you would like to shift * @return timestamp */ function shift_dates($datetime="", $shift_amount, $shift_unit) { /* Check for $datetime */ if(!$datetime){ $datetime=date("Y-m-d H:i:s"); } /* Split into separate sections: date and time */ list($date, $time)=split(" ", $datetime); /* Break down the date */ list($year, $month, $day)=split("-", $date, 3); /* Break down the time */ list($hour, $min, $sec)=split(":", $time, 3); /* This is the date shifting area */ if($shift_unit=="m") { $newdate = mktime ($hour,$min,$sec,$month+$shift_amount,$day, $year); $newdate = date("Y-m-d H:i:s", $newdate); } elseif( $shift_unit=="d") { $newdate = mktime ($hour,$min,$sec,$month,$day+$shift_amount, $year); $newdate = date("Y-m-d H:i:s", $newdate); } elseif ($shift_unit=="Y") { $newdate = mktime ($hour,$min,$sec,$month,$day, $year+$shift_amount); $newdate = date("Y-m-d H:i:s", $newdate); } elseif( $shift_unit=="H") { $newdate = mktime ($hour+$shift_amount,$min,$sec,$month,$day, $year); $newdate = date("Y-m-d H:i:s", $newdate); } elseif ($shift_unit=="i") { $newdate = mktime ($hour,$min+$shift_amount,$sec,$month,$day, $year); $newdate = date("Y-m-d H:i:s", $newdate); } elseif( $shift_unit=="s") { $newdate = mktime ($hour,$min,$sec+$shift_amount,$month,$day, $year); $newdate = date("Y-m-d H:i:s", $newdate); } return $newdate; } /** * This converts MM-DD-YYYY to YYYY-MM-DD * * @author Richard Sumilang * @param date $date MM-DD-YYYY * @return string */ function machine_date($date){ list($month, $date, $year)=split("-", $date); return $year . "-" . $month . "-" . $date; } /** * This converts YYYY-MM-DD to MM-DD-YYYY * * @author Richard Sumilang * @param date $date YYYY-MM-DD * @return string */ function human_date($date){ list($year, $month, $date)=split("-", $date); return $month . "-" . $date . "-" . $year; } /** * This converts stuff like 3:00am to 03:00 and 4:00pm to like 16:00 * * @author Richard Sumilang * @param string $time Time in the form of 1:00 or whatever * @param string $ampm Values are am or pm * @return string */ function convert_to_24_hr($time, $ampm){ /* Make sure it's lower case */ $ampm=strtolower($ampm); /* Split the time */ list($hour, $min)=split(":", $time); switch($ampm){ case "am": $hour=$this->fill_time($hour); break; case "pm": $hour=$hour + 12; break; } $min=$this->fill_time($min); return $hour . ":" . $min; } /** * This converts stuff like 16:00 to 04:00pm * * @author Richard Sumilang * @param string $time Time in the form of HH:MI * @return array */ function convert_from_24_hr($time){ /* Split up the time */ list($hour, $min)=split(":", $time); if($hour > 12){ $hour=$hour-12; $ampm="pm"; }else{ $ampm="am"; } if($hour=="00"){ $hour="24"; } $result=array( "time" => $hour . ":" . $min, "ampm" => $ampm ); return $result; } /** * Add a 0 in front of times with 1 character * * @author Richard Sumilang * @param string $string * @return string */ function fill_time($string){ if(strlen($string)==1){ $string="0" . $string; } return $string; } } ?>
Thank you very much in advance.