What is the reason of the following error? How to solve the issue?
gmmktime(): You should be using the time() function instead
The issue in the line number 90:
89 date_default_timezone_set("GMT");
90 $time = gmmktime();
gmmktime() internally uses mktime() , which throws an E_STRICT notice when called with no arguments, so use the time() function instead.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With