This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| asd(1) | |
| function asd(a, b) { | |
| dump(arguments.b) | |
| dump(isdefined("arguments.b")) | |
| } | |
| </cfscript> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfset scdata.SHUSER = 1 /> | |
| <cfset scdata.DBSEC = 1 /> | |
| <cfset scdata.SQLTOOL = 1 /> | |
| <cfset jsAddon=SerializeJSON(scdata)> | |
| <cfset jsAddon=Encrypt(jsAddon,reverse("5uNf15h4dd0n" & 'GNDFW92J6IYZVIB6DLYNQ'),"CFMX_COMPAT","Hex")> | |
| <cfdump var="#jsAddone#"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfdump var ="#min(10,11)#"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfdump var ="#min(10,11)#"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| threadSize = 200; | |
| threadList = []; | |
| for( i=1; i <= threadSize; i++ ){ | |
| threadName = "thread_test_#i#_" & replace(createUUID(), "-", "", "all"); | |
| threadList.append(threadName); | |
| thread action="run" name="#threadName#" { | |
| thread.started = true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| dump( "hello, world" ); | |
| </cfscript> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| rc = { | |
| "key0": "hello%252520world87%%20test", | |
| "key1": "hello%252520world", | |
| "key2": "hello%2520world 87%25", | |
| "key2": "hello%2520world 87%" | |
| } | |
| rc.each( (key, value ) => { | |
| if ( !isNull( value ) && isSimpleValue( value ) ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| rc = { | |
| "key0": "hello%252520world87%%20test", | |
| "key1": "hello%252520world", | |
| "key2": "hello%2520world 87%25" | |
| } | |
| rc.each( ( key, value ) => { | |
| if ( !isNull( value ) && isSimpleValue( value ) ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| local.n = 854.400000000001; | |
| writedump(numberFormat( val( local.n ), "0" )); | |
| </cfscript> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| req=getPageContext().getHttpServletRequest(); | |
| req.setAttribute("Helloworld-Shanmukh","sorglos"); | |
| dump(req.getAttributeNames()); | |
| </cfscript> |
NewerOlder