gettime
warning
This function starts with lowercase letter.
คำอธิบาย
Get the current server time, which will be stored in the variables &hour, &minute and &second.
Name | Description |
---|---|
&hour=0 | The variable to store the hour in, passed by reference. |
&minute=0 | The variable to store the minute in, passed by reference. |
&second=0 | The variable to store the seconds in, passed by reference. |
ส่งคืน
The function itself returns a Unix Timestamp.
ตัวอย่าง
new Hour, Minute, Second, Timestamp;
Timestamp = gettime(Hour, Minute, Second);
printf("%02d:%02d:%02d", Hour, Minute, Second);
printf("Seconds since midnight 1st January 1970: %d", Timestamp);
บันทึก
tip
This function is useful for measuring time intervals by using its timestamp characteristics. This can be particularly useful if you want to restrict some functionality based on a time (e.g. a command that can only be executed every 30 seconds). Using this method you don't have to rely on timers.
ฟังก์ชั่นที่เกี่ยวข้องกัน
- getdate: Get the current date of the server.