Description:- This is used to determine whether a directory exists either on disk or in memory. directoryExists( path ); This function returns a boolean value.…
Description:- This is used to get the specific name of the month from the given month_number fall. monthAsString( month_number, locale ); This function returns a string,…
Description:- This is used to get a specific part from a datetime object. datePart( datepart_argument, datetime_object ); This function returns a part of a date,…
Description:- This is used to decode an encoded HTML URL string. decodeFromURL( encoded_HTML_string ); Attributes:- string:- This is a required argument, the encoded string which needs…
Description:- This is used to encode the input string for safe output in URLs to prevent cross-site scripting attacks. encodeForURL( string [, canonicalize] ); Attributes:-…
Description:- This function adds one or more elements to the original array’s beginning and returns the modified array’s length. arrayUnshift( array, object ); Member Function…
Description:- This function swaps the array values of an array at specified positions. This function is more efficient than multiple <cfset> tags. arraySwap( array, position1, position2 );…
Description:- The Application.cfc file defines application-wide settings and variables, as well as application event handlers. we can implement the following events through Application.cfc. Method/EventWhen runonApplicationStartThe…
Description:- isDefined( ) :- Evaluates a string value to determine whether the named variable exists. structKeyExists( ) :- Determines whether a specific key is present…