Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用作曲家,当我进行更新时。如果将 xdebug 加载到我的 php.ini 文件中,则需要花费大量时间。
我如何才能仅为 cli 禁用 xdebug。所以作曲家不会花太多时间。但是我会启用 xdebug 吗?
我通过为apache指定一个自定义的php.ini文件找到了答案,并将原始的php.ini文件留给了cli。
在您的 apache 配置文件中。只需编写以下代码。
<IfModule php5_module> PHPINIDir "C:/PATH/TO/CUSTOM/INI" </IfModule>