I'm looking to convert this line of code to PHP's mktime():
Calendar timeStartPoint = Calendar.getInstance();
timeStartPoint.set(11, 0);
timeStartPoint.set(12, 0);
timeStartPoint.set(13, 0);
timeStartPoint.set(14, 0);
timeStartPoint.set(5, monthStartPoint ? 1 : 5);
timeStartPoint.set(2, 0);
timeStartPoint.set(1, 2004);
I imagine 1 is year, 5 is month of some type, and the rest I'm not sure of. I've looked around online and managed to find documentation for java.util.calendar.set(x, x) however none of them list the fiend integer names.