我以这种格式获得时间:
0:18:32
如果我var_dump()
我得到:
string '0:18:32:���' (length=11)
时间以18:32:00
的形式保存在我的数据库中。
我希望从HH:MM
中取出$AdmissionTime = strftime("%H:%M" ,$patient['TIME_UNIT_ADM'] );
,并且我已经尝试了以下代码,但它并没有按预期工作。
long style= GetWindowLong(hWnd, GWL_STYLE);
style &= ~(WS_VISIBLE); // this works - window become invisible
style |= WS_EX_TOOLWINDOW; // flags don't work - windows remains in taskbar
style &= ~(WS_EX_APPWINDOW);
我在这里缺少什么?