History ; ColdFusion (2023 release) Update 8 and ColdFusion (2021 release) Update 14: Changed the default algorithm from CFMX_COMPAT to SHA-256. ; ColdFusion MX 7: Added the algorithm and encoding parameters. ; ColdFusion 10: Added the iterations argument.
Simple cache manager for ColdFusion. Relies on the user to store the component instance in a persistent scope (eg Application, Server, or Session) - cache.cfc
DateFormat Last updated on May 30, 2024 | Also applies to ColdFusion Description Formats a date value using U.S. date formats. For international date support, use LSDateFormat. Returns A...
This is the cffunctions.js file from ColdFusion 11 beta. I note that it's a copyrighted file; however I am not actually using it here in any way other than for easy reference, so consider this to b...
<cfhtmltopdf> creates high quality PDF output from a text block containing CFML and HTML using the PDF Service Manager. The WebKit implementation for <cfhtmltopdf> is referred as PDFG (acronym of PDF Generator) which is shipped as part of the Jetty installer. The component running inside the Jetty server is referred as the service manager, which takes request for PDF conversion from one or many ColdFusion server/s. (In Windows, the service runs as the ColdFusion 11 Add-on service, which processes both Solr and PDFG requests.) ...
Description · Returns · Category · Function syntax · History
cfscript/cfscript.md Adam Tuttle Move cflocation to a more appropriate location a414b04 ·History Preview Code Blame 1269 lines (1046 loc) · 33.9 KB Raw Table of Contents CFScript...
clearTimezone · createDate · createDateTime · createODBCDate · createODBCDateTime · createODBCTime · createTime · createTimespan · dateAdd · dateCompare · dateConvert · dateDiff · dateFormat · datePart · dateTimeFormat · day · dayOfWeek · dayOfWeekAsString · dayOfWeekShortAsString · dayOfYear · daysInMonth · daysInYear · firstDayOfMonth · getHTTPTimeString · getNumericDate · getTickCount · getTimezone · getTimezoneInfo · hour · isDate ·...
DateAdd DateCompare DateConvert DateDiff DateFormat DatePart Day DayOfWeek DayOfWeekAsString DayOfYear DaysInMonth DaysInYear FirstDayOfMonth GetHttpTimeString GetTickCount GetTimeZoneInfo...
Adobe CF, moment.cfc ; x = now();, x = new moment(); ; y = createDateTime( 2008, 11, 27, 13, 47, 0 );, y = new moment( '2008-11-27 13:47:00' ); ; x = dateAdd( 'ww', 1, x );, x.add( 1, 'week' );