我正在尝试在我的 ColdFusion 程序中使用分号。它似乎是 ascii 155。函数 Chr() 仅解释高达 127 的值,尽管文档另有说明。我发现了一条线索,我可能需要在 ColdFusion 管理员中启用高 ascii 字符,但我找不到这样做的地方。此代码有效:
<cfset x = Chr(127)>
<cfoutput> this is what you get with #x# </cfoutput>
我得到一个漂亮的盒子。但这仅返回一个空白:
<cfset x = Chr(155)>
<cfoutput> this is what you get with #x# </cfoutput>
如何让 Chr() 使用更高的数字?