我正在使用Apache 2服务器并在那里托管Web应用程序。我正在使用Apache SetEnv VARIABLE value
命令在我的vhost中设置一些环境变量。
当想要在PHP中检索值时,我有两种方法。 getenv()
和apache_getenv()
。
有什么真正的区别吗?是否有理由偏爱另一个?如果apache_getenv()
的工作方式相同,并且允许您的代码与服务器无关,则不确定getenv()
方法的含义是什么。
答案 0 :(得分:6)
func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) {
// Store the deviceToken in the current Installation and save it to Parse
let installation = PFInstallation.currentInstallation()
installation.setDeviceTokenFromData(deviceToken)
installation.saveInBackground()
}
calls getenv
如果您正在运行Apache SAPI,否则它会询问系统。所以,不,没有真正的功能差异。坚持apache_getenv
。