在 IIS 7.5 上的 web.config 中设置 php.ini 变量
有没有办法使用 web.config 文件在 IIS 7.5 服务器上设置常用的 php.ini 变量?我想设置 Short_open_tag 和环境变量。
Is there any way to set the usual php.ini variables on an IIS 7.5 server, using web.config files? I'd like to set short_open_tag and environment variables.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
或者作为 http:// ruslany.net/2009/07/per-site-php-configuration-with-php-5-3-and-iis/ 说,添加
user_ini.filename = .user.ini
到php.ini 并将.user.ini
文件放入站点的根目录中。Or as http://ruslany.net/2009/07/per-site-php-configuration-with-php-5-3-and-iis/ says, add
user_ini.filename = .user.ini
to php.ini and drop.user.ini
files in the root of the sites.