Link | date_age(9) |
Author | Jolle Carlestam |
Category | Date |
Version | 9.x |
License | Public Domain |
Posted | 01 Mar 2010 |
Updated | 01 Mar 2010 |
More by this author... |
Expansion of the date type adding an age method Returns the age in years between two dates. If no date param is provided it uses the server date as now. It typically answers the question "How old are you|the dog|my car". The answer is derived by comparing the given "Date of birth" param (dob) with today. An optional "now" param can be used to answer the question "How old where xx at a given date".
// Calls the date type directly date('2000-02-28') -> age date('2000-02-28') -> age(date('2010-08-25')) // Calls the age method that in turn calls the date type age(date('2000-02-28')); age(date('2000-02-28'),date('2010-08-26')) age(-dob=date('2000-02-28'),-dod=date('2010-08-27')) age(-dob=date('2000-02-28'),-dod=date('2010-08-28')) age(-dob=date('2000-02-28'),-dod=date('2010-08-29')) age(-dob=date('2000-02-28'),-dod=date('2010-08-30')) age(-dob=date('2000-02-28'))
Click the "Download" button below to retrieve a copy of this tag, including the complete documentation and sample usage shown on this page. Place the downloaded ".inc" file in your LassoStartup folder, restart Lasso, and you can begin using this tag immediately.
age(now::date = date) => { return #now -> year - .year - (#now -> dayofyear >= .dayofyear ? 0 | 1) } /**! Returns the age as years calculated between to dates. */ define age(dob::date, dod::date = date) => #dob -> age(#dod) define age(-dob::date, -dod::date = date) => #dob -> age(#dod) ?>
No comments
©LassoSoft Inc 2015 | Web Development by Treefrog Inc | Privacy | Legal terms and Shipping | Contact LassoSoft