我有一台新电脑戴尔Inspiron 17 7000系列。这是笔记本电脑:
但是使用Symfony(新应用程序,juste 3 slim控制器),我的应用程序非常慢...... 30秒:/
这是我的php.ini
var:
- realpath_cache_size = 12288K
- realpath_cache_ttl = 1800
- opcache.max_accelerated_files=60000
你能帮助我吗?
答案 0 :(得分:2)
很可能是因为启用了XDebug。 它发生在Windows上的许多PHP应用程序中,而不仅仅是Symfony。
正如here所述,尝试禁用“remote_autostart”和“profiler_enable”模式:
xdebug.remote_autostart = 0
xdebug.profiler_enable = 0
甚至注释掉XDebug启用的行,如果上面没有帮助:
;zend_extension = "/absolute/path/to/your/xdebug-extension.so"