PHP: Bu cari yıl, zaman damgası değilse yıl yazmak

0 Cevap

Ben sadece onun cari yıl biz değiliz yalnızca, yıl (Y) yazmak istiyoruz.

function get_day_name($timestamp) {
    $date = date('j-m-Y', $timestamp);
    if($date == date('j-m-Y')) {
      $day_name = 'Today';
      echo 'idag ';
    } else if($date == date('j-m-Y',time() - (24 * 60 * 60))) {
      $day_name = 'Yesterday';
      echo 'igår ';
    }else{
    # How can i check here whether the $timestamp is from this year or last year?
    # If it is from this year then it shouldnt write out the "Y" in $date
    echo $date;
    }
}

0 Cevap