<?php
$fmt = datefmt_create(
    "tr_TR",
    IntlDateFormatter::FULL,
    IntlDateFormatter::FULL,
    'Europe/Istanbul',
    IntlDateFormatter::GREGORIAN
);
echo "İlk biçemli çıktı: ".datefmt_format($fmt, 1234567890);
$fmt = datefmt_create(
    "en-US",
    IntlDateFormatter::FULL,
    IntlDateFormatter::FULL,
    'Europe/Istanbul',
    IntlDateFormatter::GREGORIAN
 );
echo "\nİkinci biçemli çıktı: ".datefmt_format($fmt, 1234567890);
$fmt = datefmt_create(
    "tr_TR",
    IntlDateFormatter::FULL,
    IntlDateFormatter::FULL,
    'Europe/Istanbul',
    IntlDateFormatter::GREGORIAN,
    "dd/MM/yyyy"
);
echo "\nİlk kalıbın çıktısı: ".datefmt_format( $fmt, 1234567890);
$fmt = datefmt_create(
    "en-US",
    IntlDateFormatter::FULL,
    IntlDateFormatter::FULL,
    'Europe/Istanbul',
    IntlDateFormatter::GREGORIAN,
    "MM/dd/yyyy"
);
echo "\nİkinci kalıbın çıktısı: ".datefmt_format($fmt, 1234567890);
?>