CR的代码文本

all for learning about the world
  订阅 订阅  :: 管理

php.ini 开发和线上配置的差异

Posted on 2017-03-10 11:39  mumuliang  阅读(295)  评论(0编辑  收藏  举报

比对了一下php自带的php.ini-development和php.ini-production,备忘。

display_errors = On
display_startup_errors = On
track_errors = On
mysqlnd.collect_memory_statistics = On
zend.assertions = 1
;opcache.huge_code_pages=0 <--- develop中是0,pro是1,然而都是注释掉的。
error_reporting = E_ALL
; error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT 《-- production