Guest User

Untitled

a guest
Dec 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <cfscript>
  2. function testDateFmt(locale) {
  3. setLocale(locale);
  4. dt = '04/12/2018';
  5. pdt = lsparseDateTime(dt);
  6.  
  7. dump(pdt);
  8. dump(lsDateFormat(pdt, 'yyyy-mm-dd'));
  9. }
  10.  
  11. testDateFmt('en_GB');
  12. testDateFmt('en_US');
  13.  
  14. </cfscript>
Add Comment
Please, Sign In to add comment