int DayOfWeek( )
Returns the current zero-based day of the week (0-Sunday,1,2,3,4,5,6) of the last known server time.
最後に知り得たサーバー時刻の週の現在の日をゼロベース(0-日曜,1,2,3,4,5,6)で返します。
Note: At the testing, the last known server time is modelled.
注意:テストでは、最後に知り得たサーバ時刻はモデル化されています。
Sample:
サンプル:
1 2 | // does not work on holidays. if(DayOfWeek()==0 || DayOfWeek()==6) return(0); |