Lines Matching defs:unix
9 protected $unix;
14 * can parse, really) as well as unix time stamps.
26 $this->unix = $dateString;
29 $this->unix = (int) (new Datetime($dateString))->format('U');
31 $this->unix = 0;
43 //return gmdate("r",$this->unix);
44 $date = gmdate("D, d M Y H:i:s O", $this->unix);
56 $date = gmdate("Y-m-d\TH:i:sP", $this->unix);
62 * Gets the date stored in this FeedDate as unix time stamp.
64 * @return int a date as a unix time stamp
66 public function unix()
68 return $this->unix;