How do you create data structures in php ?
i.e. how would I create the following two vb structures in php ?
Structure SYSTEMTIME
Dim wYear As Short
Dim wMonth As Short
Dim wDayOfWeek As Short
Dim wDay As Short
Dim wHour As Short
Dim wMinute As Short
Dim wSecond As Short
Dim wMilliseconds As Short
End Structure
Private Structure TIME_ZONE_INFORMATION
Dim Bias As Integer
Dim StandardBias As Integer
Dim DaylightBias As Integer
Dim StandardDate As SYSTEMTIME
Dim DaylightDate As SYSTEMTIME
End Structure
Also, if I read a binary value from the registry, how would I then convert it to a variable of type TIME_ZONE_INFORMATION
Many Thanks
--
Adrian Parker