<PHP Date / Time Referensi
Contoh
Kembali objek DateTime baru, dan kemudian memformat tanggal:
<?php
$date=date_create("2013-03-15");
echo date_format($date,"Y/m/d H:i:s");
?>
Menjalankan contoh »
Definisi dan Penggunaan
The date_format() mengembalikan fungsi tanggal diformat sesuai dengan format yang ditentukan.
Sintaksis
date_format( object,format);
Parameter | Deskripsi |
---|
object | Wajib. Menentukan objek DateTime dikembalikan oleh date_create() |
format | Wajib. Menentukan format untuk tanggal. Karakter berikut dapat digunakan: - d - Hari bulan (from 01 to 31)
- D - Sebuah representasi tekstual hari (three letters)
- j - Hari bulan tanpa nol terkemuka (1 to 31)
- l (lowercase 'L') - Sebuah representasi tekstual penuh hari
- N - Representasi numerik ISO-8601 dari sehari (1 for Monday, 7 for Sunday)
- S - Akhiran ordinal bahasa Inggris untuk hari bulan (2 characters st, nd, rd or th. Works well with j)
- w - Sebuah representasi numerik hari (0 for Sunday, 6 for Saturday)
- z - Hari tahun (from 0 through 365)
- W - The ISO-8601 angka minggu dari tahun (weeks starting on Monday)
- F - Sebuah representasi tekstual penuh satu bulan (January through December)
- m - Sebuah representasi numerik dari satu bulan (from 01 to 12)
- M - Sebuah tekstual representasi singkat satu bulan (three letters)
- n - Sebuah representasi numerik dari satu bulan, tanpa nol terkemuka (1 to 12)
- t - Jumlah hari dalam satu bulan
- L - Apakah itu tahun kabisat (1 if it is a leap year, 0 otherwise)
- o - angka tahun The ISO-8601
- Y - Sebuah empat digit representasi dari setahun
- y - Sebuah dua digit representasi dari setahun
- a - am huruf kecil atau pm
- A - Huruf Besar AM atau PM
- B - waktu Internet Swatch (000 to 999)
- g - format 12-jam satu jam (1 to 12)
- G - format 24-jam satu jam (0 to 23)
- h - format 12-jam satu jam (01 to 12)
- H - format 24-jam satu jam (00 to 23)
- i - Menit dengan nol terkemuka (00 to 59)
- s - Detik, dengan nol terkemuka (00 to 59)
- u - Mikrodetik (added in PHP 5.2.2)
- e - Zona identifier (Examples: UTC, GMT, Atlantic/Azores)
- Saya (capital i) - Apakah tanggal dalam isi badan penghematan waktu (1 if Daylight Savings Time, 0 otherwise)
- O - Perbedaan waktu Greenwich (GMT) di jam (Example: +0100)
- P - Perbedaan waktu Greenwich (GMT) di jam: menit (ditambahkan dalam PHP 5.1.3)
- T - Timezone singkatan (Examples: EST, MDT)
- Z - Timezone offset dalam detik. Offset untuk zona waktu barat dari UTC negatif (-43.200-50.400)
- c - Tanggal ISO-8601 (eg 2013-05-05T16:34:42+00:00)
- r - The RFC 2822 diformat tanggal (eg Fri, 12 Apr 2013 12:01:05 +0200)
- U - The detik sejak Unix Epoch (January 1 1970 00:00:00 GMT)
dan konstanta yang telah ditetapkan berikut juga dapat digunakan (tersedia sejak PHP 5.1.0): - DATE_ATOM - Atom (example: 2013-04-12T15:52:01+00:00)
- DATE_COOKIE - HTTP Cookies (example: Friday, 12-Apr-13 15:52:01 UTC)
- DATE_ISO8601 - ISO-8601 (example: 2013-04-12T15:52:01+0000)
- DATE_RFC822 - RFC 822 (example: Fri, 12 Apr 13 15:52:01 +0000)
- DATE_RFC850 - RFC 850 (example: Friday, 12-Apr-13 15:52:01 UTC)
- DATE_RFC1036 - RFC 1036 (example: Fri, 12 Apr 13 15:52:01 +0000)
- DATE_RFC1123 - RFC 1123 (example: Fri, 12 Apr 2013 15:52:01 +0000)
- DATE_RFC2822 - RFC 2822 (Fri, 12 Apr 2013 15:52:01 +0000)
- DATE_RFC3339 - Sama seperti DATE_ATOM (since PHP 5.1.3)
- DATE_RSS - RSS (Fri, 12 Aug 2013 15:52:01 +0000)
- DATE_W3C - World Wide Web Consortium (contoh: 2013-04-12T15: 52: 01 + 00: 00)
|
Rincian teknis
Kembali Nilai: | Mengembalikan tanggal diformat sebagai string. FALSE pada kegagalan |
---|
PHP Versi: | 5.2+ |
---|
<PHP Date / Time Referensi