functions-online

Comments

Last comments of user Vincy [www]

On 16. Jul 2013 07:35 Vincy wrote at mktime:

@any arguments thus omitted will be set to the current value according to the local date and time. How can we omit any arguments? If I call like mktime('',30,30,7,7,1984) returns Warning: mktime() expects parameter 1 to be long else I call by omitting the first argument, like mktime(30,30,7,7,1984) then the arguments are set to hour,minute,second,month,day, respectively, and for year it takes current value which is added with the value carry over from day and month argument and returns, 1544074207 After I invoke date() for this timestamp computed, it returns 06-12-2018 06:30:07 Is there any possibility of taking current value for a particular argument omitted?