Hello Devs,
After a recent update some of my date/time functions are not working.
date(‘D’,$startDate);
and
timeFormat($startTime);
The app just stops processing statements.
Any direction is appreciated.
Perhaps, try putting the code in try catch block to see what error it produces.
Does debug point to that code? it seems very basic to cause error.
Thanks for the reply bwalujo.
Apparently the format I was suppling changed causing the error.
I’m now using this to explicitly supply the format.
$startDayText = date(‘D’,mktime($startMonth,$startDay,$startYear));
All is well again, Thanks
I am glad you informed others abotu the solutions
… good job