Help for this page

Select Code to Download


  1. or download this
    {
        local $ENV{TZ} = "Singapore";
        print scalar localtime;
    }
    
  2. or download this
    {
        # Strangely enough I must use GMT-8 on my linux, even
    ...
        local $ENV{TZ} = "GMT-8";
        print scalar localtime;
    }
    
  3. or download this
    print scalar gmtime(8*3600+time);