我有以下环境:
- Windows 上的 XAMPP
- php 由 mod_php5 处理
有人可以告诉我如何为每个项目加载自定义 php.ini 吗?因为目前它只从 xamp setup 的主 php.ini 加载。
非常感谢。
You can setup PHPINIDir for each virtual host.
Add to your apache configuration:
<VirtualHost *:80>
DocumentRoot c:\www\example1
ServerName www.example.com
PHPINIDir c:\www\example1
# Other directives here
</VirtualHost>
for handling several virtualhosts you should have different hostnames (you can use etc/hosts) or different ip-adresses.