mktime()
mktime() function is used to get the Unix Time Stamp.
Example :
mktime(0,0,0,date(”m”),date(”d”),date(”Y”))
Above example will give the starting timestamp for today. First argument is hours, second argument is minute, third is second, fouth is month, fifith is day and sixth is year.
mktime(0,0,0,12,12,2006)
Above example will give the timestamp of 12.12.2006
