コード例 #1
0
ファイル: date.php プロジェクト: anqh/core
 /**
  * Returns the difference between timestamps in a "fuzzy" way.
  *
  * @param   integer  $timestamp
  * @param   integer  $timestamp2  Defaults to now
  * @return  string
  */
 public static function fuzzy_span($timestamp, $timestamp2 = null)
 {
     // If timestamp2 given, pad the actual timestamp to make up the time
     return parent::fuzzy_span($timestamp2 ? $timestamp - $timestamp2 + time() : $timestamp);
 }