Lines Matching refs:df
16 $df = new IntlDateFormatter('es_ES', 0, 0, NULL);
17 echo $df->format($ts), "\n";
19 $df = new IntlDateFormatter('es_ES', 0, 0, 'Europe/Amsterdam');
20 echo $df->format($ts), "\n";
22 $df = new IntlDateFormatter('es_ES', 0, 0, new DateTimeZone('Europe/Lisbon'));
23 echo $df->format($ts), "\n";
25 $df = new IntlDateFormatter('es_ES', 0, 0, IntlTimeZone::createTimeZone('America/New_York'));
26 echo $df->format($ts), "\n";
29 $df = new IntlDateFormatter('es_ES', 0, 0, 'Europe/Amsterdam', new IntlGregorianCalendar('Europe/Li…
30 echo $df->format($ts), "\n";
33 $df = new IntlDateFormatter('es_ES', 0, 0, NULL, new IntlGregorianCalendar('Europe/Lisbon'));
34 echo $df->format($ts), "\n";
36 $df = new IntlDateFormatter('es_ES', 0, 0, 'Europe/Amsterdam', 0);
37 echo $df->format($ts), "\n";