Difference between revisions of "Ns parsetime"

From AOLserver Wiki
Jump to navigation Jump to search
(imported from WiKit id 617)
 
 
(2 intermediate revisions by the same user not shown)
Line 17: Line 17:
 
'''EXAMPLE'''
 
'''EXAMPLE'''
  
     % set time [[ns_localtime]]
+
     % set time [ [[ns_localtime]] ]
 
     33 33 22 11 5 104 5 162 1
 
     33 33 22 11 5 104 5 162 1
  
     % expr {1900 + [[ns_parsetime year $time]]}
+
     % expr {1900 + [ [[ns_parsetime]] year $time]}
 
     2004
 
     2004
  
Line 29: Line 29:
 
----
 
----
  
[[Category Documentation]] - [[Category Core Tcl API]]
+
[[Category:Documentation]] - [[Category:Core Tcl API]]

Latest revision as of 19:46, 7 February 2009

Man page: http://aolserver.com/docs/tcl/ns_parsetime.html


NAME

ns_parsetime - Return an element from the time structure list

SYNOPSYS

ns_parsetime option time

DESCRIPTION

This command takes a nine-element Tcl list as time representing the Unix struct tm structure (as would be returned from ns_gmtime or ns_localtime) and based on option, returns an element from the list. The valid options are: sec, min, hour, mday, mon, year, wday, yday, isdst. The options are listed in order of the actual elements in the Tcl list itself.

EXAMPLE

   % set time [ ns_localtime ]
   33 33 22 11 5 104 5 162 1
   % expr {1900 + [ ns_parsetime year $time]}
   2004

SEE ALSO

ns_fmttime, ns_gmtime, ns_httptime, ns_localtime, ns_parsehttptime, ns_time

-