IntlDateFormatter::getLocale

datefmt_get_locale

(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)

IntlDateFormatter::getLocale -- datefmt_get_localeGet the locale used by formatter

Beschreibung

Objektorientierter Stil

public IntlDateFormatter::getLocale(int $type = ULOC_ACTUAL_LOCALE): string|false

Prozeduraler Stil

datefmt_get_locale(IntlDateFormatter $formatter, int $type = ULOC_ACTUAL_LOCALE): string|false

Get locale used by the formatter.

Parameter-Liste

formatter

The formatter resource

type

You can choose between valid and actual locale ( Locale::VALID_LOCALE, Locale::ACTUAL_LOCALE, respectively). The default is the actual locale.

Rückgabewerte

The locale of this formatter, Bei einem Fehler wird false zurückgegeben..

Beispiele

Beispiel #1 datefmt_get_locale() example

<?php
$fmt 
datefmt_create(
    
'en_US',
    
IntlDateFormatter::FULL,
    
IntlDateFormatter::FULL,
    
'America/Los_Angeles',
    
IntlDateFormatter::GREGORIAN
);
echo 
'locale of the formatter is : ' datefmt_get_locale($fmt);
echo 
'First Formatted output is ' datefmt_format($fmt0);

$fmt datefmt_create(
    
'de-DE',
    
IntlDateFormatter::FULL,
    
IntlDateFormatter::FULL,
    
'America/Los_Angeles',
    
IntlDateFormatter::GREGORIAN
);
echo 
'locale of the formatter is : ' datefmt_get_locale($fmt);
echo 
'Second Formatted output is ' datefmt_format($fmt0);

?>

Beispiel #2 OO example

<?php
$fmt 
= new IntlDateFormatter(
    
'en_US',
    
IntlDateFormatter::FULL,
    
IntlDateFormatter::FULL,
    
'America/Los_Angeles',
    
IntlDateFormatter::GREGORIAN
);
echo 
'locale of the formatter is : ' $fmt->getLocale();
echo 
'First Formatted output is ' $fmt->format(0);

$fmt = new IntlDateFormatter(
    
'de-DE',
    
IntlDateFormatter::FULL,
    
IntlDateFormatter::FULL,
    
'America/Los_Angeles',
    
IntlDateFormatter::GREGORIAN
);
echo 
'locale of the formatter is : ' $fmt->getLocale();
echo 
'Second Formatted output is ' $fmt->format(0);

?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

locale of the formatter is : en
First Formatted output is Wednesday, December 31, 1969 4:00:00 PM PT
locale of the formatter is : de
Second Formatted output is Mittwoch, 31. Dezember 1969 16:00 Uhr GMT-08:00

Siehe auch

Hier Kannst Du einen Kommentar verfassen


Bitte gib mindestens 10 Zeichen ein.
Wird geladen... Bitte warte.
* Pflichtangabe
Es sind noch keine Kommentare vorhanden.

Was genau bedeutet "Vibe Coding"? Ein tiefgehender Blick für Entwickler

In der Welt der Softwareentwicklung gibt es unzählige Wege, wie man an ein Projekt herangeht. Manche schwören auf strikte Planung, andere auf bewährte Algorithmen und wieder andere lassen sich von etwas ganz anderem leiten: ihrem Gefühl. ...

admin

Autor : admin
Kategorie: Software & Web-Development

PHP cURL-Tutorial: Verwendung von cURL zum Durchführen von HTTP-Anfragen

cURL ist eine leistungsstarke PHP-Erweiterung, die es Ihnen ermöglicht, mit verschiedenen Servern über verschiedene Protokolle wie HTTP, HTTPS, FTP und mehr zu kommunizieren. ...

TheMax

Autor : TheMax
Kategorie: PHP-Tutorials

Midjourney Tutorial - Anleitung für Anfänger

Über Midjourney, dem Tool zur Erstellung digitaler Bilder mithilfe von künstlicher Intelligenz, gibt es ein informatives Video mit dem Titel "Midjourney Tutorial auf Deutsch - Anleitung für Anfänger" ...

Mike94

Autor : Mike94
Kategorie: KI Tutorials

Tutorial veröffentlichen

Tutorial veröffentlichen

Teile Dein Wissen mit anderen Entwicklern weltweit

Du bist Profi in deinem Bereich und möchtest dein Wissen teilen, dann melde dich jetzt an und teile es mit unserer PHP-Community

mehr erfahren

Tutorial veröffentlichen

U4gm Spiritborn Build Enhancements

Spiritborn characters have also received significant enhancements in Season 10. These ethereal beings are known for their ability to harness the p ...

Geschrieben von lalo233 am 29.08.2025 08:14:12
Forum: Grafik / Design / Flash ...
U4gm How to Get the Strongest Equipment

Complete Challenging Dungeons and Raids: One of the most reliable ways to acquire top-tier equipment is by completing challenging dungeons and rai ...

Geschrieben von lalo233 am 29.08.2025 08:11:59
Forum: Apps und PHP Script Gesuche
Ein data POST via Curl funktioniert nicht.

Ja, ich lasse mir teilweise Code von KI generieren und nutze dafür vor allem GitHub Copilot und ChatGPT, wobei ich den Output immer nochmal manue ...

Geschrieben von coeddie11 am 28.08.2025 10:45:33
Forum: PHP Developer Forum
Sortieren?!

Ich denke mal du meinst das so (Beispiel): ID, Name, PLZ, Wohnort etc. stehen in der DB: 1 Ute Steingräber 12345 Dödelsheim 2 Mark Zimmermann ...

Geschrieben von wilsonbarnes am 25.08.2025 09:28:12
Forum: PHP Developer Forum