Lines Matching refs:df
15 $df = new IntlDateFormatter('es_ES', 0, 0, NULL);
16 echo $df->format($ts), "\n";
18 $df = new IntlDateFormatter('es_ES', 0, 0, 'Europe/Amsterdam');
19 echo $df->format($ts), "\n";
21 $df = new IntlDateFormatter('es_ES', 0, 0, new DateTimeZone('Europe/Lisbon'));
22 echo $df->format($ts), "\n";
24 $df = new IntlDateFormatter('es_ES', 0, 0, IntlTimeZone::createTimeZone('America/New_York'));
25 echo $df->format($ts), "\n";
28 $df = new IntlDateFormatter('es_ES', 0, 0, 'Europe/Amsterdam', new IntlGregorianCalendar('Europe/Li…
29 echo $df->format($ts), "\n";
32 $df = new IntlDateFormatter('es_ES', 0, 0, NULL, new IntlGregorianCalendar('Europe/Lisbon'));
33 echo $df->format($ts), "\n";
35 $df = new IntlDateFormatter('es_ES', 0, 0, 'Europe/Amsterdam', 0);
36 echo $df->format($ts), "\n";