the following is what I was doing with vbscript, how can I convert this over for php?
/*
example of the time/date string 20050815131613.000000-300
strTimeShift = Right( ojtime.LastBootUpTime, 4 ) / 60
strBootYear = Left( ojtime.LastBootUpTime, 4 ) =2005
strBootMonth = Mid( ojtime.LastBootUpTime, 5, 2 ) =08
strBootDay = Mid( ojtime.LastBootUpTime, 7, 2 ) =15
strBootDate = DateValue( strBootDay & "-" & strBootMonth & "-" & strBootYear )
*/
just need help on converting the left / right / mid to php.
thx