1630440104 is the Unix epoch time code example. This PHP code outputs it as 2021.08.31 at 23:08:44 which is incorrect. Because the correct output should be 2021.08.31 at 23:01:44. Whatever time code I insert into the above PHP code it returns 08 minutes instead of the actual value. Where have I made a mistake? Answer The mistake is using m
Tag: unix
Is there a way to release mysql connections?
The thing is I have a cronjob that repeats itself every 2min & calls a php script which does some mysql query.. now that thing is making mysql very busy which in the process is consuming too much …