Time Function in php in Hindi

Time and Date Function in php in Hindi :

Php में time और Date पता करने के लिए अलग अलग function का use करते है php में time और date पता करने के लिए
प्रमुख function निम्नलिखित है


  1. time() :
इस function का उसे कर के computer की Currenter date और time को पिक करते है और यह function कोई भी पेरामीटर नहीं लेती है और यह function एक Integer number return करता है यह function जो integer value return करता है वह time को Second में Convert की गई value है

Example of time() Function

<?php
$t1=time();
echo $t1;
?>


getdate() Function
getdate() Function php का एक pre-define function है जो current date और time से से सम्बंधित जानकारी asosiativ array के रूप में return करता है 

 

निम्नलिखित statement का उसे कर के आप getdate() function से अपनी आवश्यकता के अनुसार time तथा date पता कर सकते है

Key Description Example                               Description                            Example
seconds Seconds past the minutes                      (0-59)                                      20
minutes Minutes past the hour                           (0 - 59)                                     29
hours Hours of the day                                       (0 - 23)                                    22
mday Day of the month                                      (1 - 31)                                    11
wday Day of the week                                        (0 - 6)                                       4
mon Month of the year                                       (1 - 12)                                     7
year Year                                                            (4 digits)                                   1997
yday Day of year                                                ( 0 - 365 )                                 19
weekday                                                        Day of the week                       Thursday
month                                                           Month of the year                       January


Example
<?php
$date_array = getdate();
foreach ( $date_array as $key => $val )
{
print "$key = $val<br />";
}
$formated_date = "Today's date: ";
$formated_date .= $date_array[mday] . "<br>";
$formated_date .= $date_array[mon] . "<br>";
$formated_date .= $date_array[year];
print $formated_date;
?>

Comments