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
| <!--- does NOT work ---> | |
| <cfprocessingdirective pageEncoding = "windows-1252"> | |
| <cfhttp method="GET" | |
| charset="utf-8" | |
| url="https://www.kermitproject.org/utf8.html" | |
| getAsBinary="never" | |
| > | |
| </cfhttp> |
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
| <!--- does NOT work ---> | |
| <cfprocessingdirective pageEncoding = "windows-1252"> | |
| <cfhttp method="GET" | |
| charset="utf-8" | |
| url="https://www.kermitproject.org/utf8.html" | |
| getAsBinary="never" | |
| > | |
| </cfhttp> |
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> | |
| var myArr = [ | |
| { | |
| "pid": 1, | |
| "options": [ | |
| "one": 1, | |
| "two": 2 | |
| ] | |
| }, |
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> | |
| myArr = [ | |
| { | |
| "currency": "EUR", | |
| "delAddressType": "000", | |
| "deliveryTimes": { | |
| "timeFrameId": "0", | |
| "identMethodDescription": "Online Ident", | |
| "description": "", |
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> | |
| myArr = [ | |
| { | |
| "currency": "EUR", | |
| "delAddressType": "000", | |
| "deliveryTimes": { | |
| "timeFrameId": "0", | |
| "identMethodDescription": "Online Ident", | |
| "description": "", |
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
| <cfloop from="1" to="10" index="i"> | |
| <cfoutput>#i#<br></cfoutput> | |
| </cfloop> | |
| <cfset sleep(2000)/> |
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> | |
| a= "abc"; | |
| writedump(a); | |
| </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> | |
| writeOutput(dateFormat(now(),"short"); | |
| </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> | |
| x = 1 | |
| switch ( x ) { | |
| case 1:case 2:case 3:case 4:case 5: | |
| // DO A | |
| break; | |
| case 6:case 7:case 8:case 9:case 10:case 11:case 12:case 13: | |
| // DO B | |
| break; | |
| case 14:case 15:case 16: |
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> | |
| something = '{"something": null}'; | |
| writedump(deserializejson(something)); | |
| </cfscript> |
NewerOlder