I am using php version 5.3.8
And mktime is not working for me
here is the code
$dated= mktime(0,0,0,11,5,2038);
var_dump($dated);
Output is as bool(false)
Please suggest me its fix
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
From PHP manual:
One possible solution is to use ADOdb Date Time Library. This library overcomes the limitations by replacing the native function’s signed integers (normally 32-bits) with PHP floating point numbers (normally 64-bits).