Lines Matching refs:day
69 public int $day; variable in Fisharebest\\Webtrees\\Date\\AbstractCalendarDate
89 [$this->year, $this->month, $this->day] = $this->calendar->jdToYmd($date);
96 $this->day = (int) $date[2];
100 $this->day = 0;
123 $this->day = $date->day;
132 $this->day = 0;
141 … = $date->calendar->ymdToJd($today[0], $date->month, $date->day === 0 ? $today[2] : $date->day);
146 [$this->year, $this->month, $this->day] = $this->calendar->jdToYmd($jd);
154 if ($date->day === 0) {
155 $this->day = 0;
187 public function day(): int function in Fisharebest\\Webtrees\\Date\\AbstractCalendarDate
189 return $this->day;
223 } elseif ($this->day === 0) {
228 … $this->minimum_julian_day = $this->calendar->ymdToJd($this->year, $this->month, $this->day);
469 if ($this->day === 0) {
480 if ($this->day !== 0 && preg_match('/%[djlDNSwz]/', $format)) {
577 if ($this->day > 9) {
578 return I18N::digits($this->day);
581 return I18N::digits('0' . $this->day);
591 return I18N::digits($this->day);
770 if ($this->day === 0) {
774 return sprintf('%02d', $this->day);
860 $tmp->day = $ymd[2];
876 if ($this->day !== 0 && strpbrk($date_format, 'dDj')) {