Responsive Advertisement

Date and Time in Hindi

date() और time() इस दो function से date और time को output में display किया जाता है |

Current Date/Time

Syntax for date/time()
date(date_format, timestamp);

date_format : यहाँ पर date का format दिया जाता है | ये current date print करता है | ये timestamp को date/time format में convert कर देता है |
timestamp : यहाँ पर ये optional रहता है | अगर कोई value दी नहीं जाती तो current timestamp दिया जाता है |
Additional formatting के लिए date में /, :, - का इस्तेमाल किया जाता है |

Example for date()

Source Code :
123456<?php
echo "Current Date : ".date("d/m/y")."<br />";
echo "Current Time : ".date("H:i:sa")."<br />";
echo "Current Day : ".date("l")."<br />";
echo "Current Month : ".date("M")."<br />";
?>
Output :
Current Date : 19/02/17
Current Time : 15:54:08pm
Current Day : Sunday
Current Month : Feb

Timestamp

Timestamp ये readable नहीं होता इसे समझने के लिए date() function का इस्तेमाल करना पड़ता है |
Timestamp में time() function का इस्तेमाल किया जाता है |
यहाँ पर 1 January 1970 00:00 से लेकर अभी इसी वक्त तक seconds display होते है |

Example for time()

Source Code :
123<?php
echo "Current Timestamp : ".time();
?>
Output :
Current Timestamp : 1487518199

Table for Date Formats

FormatDescriptionExample
a'am' या 'pm' lowercaseam
A'AM' या 'PM' uppercaseAM
dशुरुआत में 0 के साथ 2 digits के month का day 01 से 31 तक15
D3 letters week का dayMon
Fmonth का full nameMarch
gशुरुआत से 0 के बिना hour के लिए 12hour का format 1 से 12 तक5
Gशुरुआत से 0 के बिना hour के लिए 24hour का format 0 से 23 तक3
hशुरुआत से 0 के साथ 12hour के format में hour 01 से 12 तक05
Hशुरुआत से 0 के साथ 24hour के format में hour 00 से 24 तक00
iशुरुआत से 0 के साथ minutes 00 से 59 तक58
Iअगर Daylight Savings Time है तो 1 नहीं तो 01
jशुरुआत से 0 के बिना month का day 1 से 31 तक27
lWeek का day full nameFriday
LLeap year है तो 1 नहीं तो 00
mशुरुआत से 0 के साथ year का month 01 से 12 तक02
M3 letters year का monthJun
nशुरुआत से 0 के बिना year का month 1 से 12 तक10
rRFC 822 formatted dateSun, 19 Feb 2017 19:07:40 +0100
sseconds 00 से 59 तक58
tcheck month के days 28 से 31 तक31
Utimestamp1487527863
y2 digits year17
Y4 digits year2017
zyear का day 0 से 365 तक106
Ztimezone offset seconds में3600

Post a Comment

0 Comments