Lines Matching refs:strtr

39 use function strtr;  alias
470 …$format = strtr($format, ['%d' => '', '日' => '', '%j,' => '', '%j' => '', '%l' => '', '%D' => '', …
473 … $format = strtr($format, ['%F' => '', '%m' => '', '%M' => '', '月' => '', '%n' => '', '%t' => '']);
476 … $format = strtr($format, ['%t' => '', '%L' => '', '%G' => '', '%y' => '', '年' => '', '%Y' => '']);
509 $format = strtr($format, ['%d' => $this->formatDayZeros()]);
512 $format = strtr($format, ['%j' => $this->formatDay()]);
515 $format = strtr($format, ['%l' => $this->formatLongWeekday()]);
518 $format = strtr($format, ['%D' => $this->formatShortWeekday()]);
521 $format = strtr($format, ['%N' => $this->formatIsoWeekday()]);
524 $format = strtr($format, ['%w' => $this->formatNumericWeekday()]);
527 $format = strtr($format, ['%z' => $this->formatDayOfYear()]);
530 $format = strtr($format, ['%F' => $this->formatLongMonth($case)]);
533 $format = strtr($format, ['%m' => $this->formatMonthZeros()]);
536 $format = strtr($format, ['%M' => $this->formatShortMonth()]);
539 $format = strtr($format, ['%n' => $this->formatMonth()]);
542 $format = strtr($format, ['%t' => (string) $this->daysInMonth()]);
545 $format = strtr($format, ['%L' => $this->isLeapYear() ? '1' : '0']);
548 $format = strtr($format, ['%Y' => $this->formatLongYear()]);
551 $format = strtr($format, ['%y' => $this->formatShortYear()]);
555 $format = strtr($format, ['%@' => $this->formatGedcomCalendarEscape()]);
558 $format = strtr($format, ['%A' => $this->formatGedcomDay()]);
561 $format = strtr($format, ['%O' => $this->formatGedcomMonth()]);
564 $format = strtr($format, ['%E' => $this->formatGedcomYear()]);