NEON remove php settings for forward compatibility
Notice: This thread is very old.
- h4kuna
- Backer | 740
Hi,
we have production machine on php 5.4 and now i test php 5.6 where php
settings are deprecated. For example:
php:
iconv.internal_encoding: UTF-8
mbstring.internal_encoding: UTF-8
I haven't choice how this setting remove via my config.local.neon. If I don't comment it than tracy execute.
Is good idea implemet behavior whose setup NULL than remove this
option?
For example my config.local.neon:
php:
iconv.internal_encoding: NULL # This not write to SystemContainer.
Is it another option?
- Michal Vyšinský
- Member | 608
Hi,
if you need to run on php 5.4 machine and you really need those configuration
why not add it to php.ini? But I would upgrade to php 5.6 everywhere. :)
- Jan Tvrdík
- Nette guru | 2595
@h4kuna Send PR, not calling ini_set
for
NULL
values seems reasonable. Or I can do it for you.