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