gpt4 book ai didi

php - 是否有 ColdFusion 相当于 phpinfo()

转载 作者:可可西里 更新时间:2023-11-01 13:40:45 25 4
gpt4 key购买 nike

是否有 ColdFusion 等同于 phpinfo()?除了我们大学的服务器支持外,我对 ColdFusion 了解不多。我基本上只想知道我们运行的是什么版本。

最佳答案

根据 Checking The ColdFusion Version :

Checking your ColdFusion version could not be easier. All you have to do is dump out the SERVER scope. The version of ColdFusion is contained in a field titled "ColdFusion.ProductVersion." You should see a number like 7,0,1,116466. Additionally, the type license type of the system (ex. enterprise, developer, etc.) is in a field titled "ColdFusion.ProductLevel."

还有一个代码示例:

<!--- Dump out the server scope. --->
<cfdump var="#SERVER#" />

<!--- Store the ColdFusion version. --->
<cfset strVersion = SERVER.ColdFusion.ProductVersion />

<!--- Store the ColdFusion level. --->
<cfset strLevel = SERVER.ColdFusion.ProductLevel />

关于php - 是否有 ColdFusion 相当于 phpinfo(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3866458/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com