ARudik / phc

Automatically exported from code.google.com/p/phc
0 stars 0 forks source link

support php.ini #35

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Most variables in php.ini are related to the standard library (list here
http://ie.php.net/manual/en/ini.php#ini.list). Some, however, relate to the
way php executes. Some of these can be updated by ini_set, and some cant.
Some are affected by safe mode, and some cant.

A simple way to handle this may be to wrap each call to ini_set (if we dont
know the setting being updated) and update part of our run-time with that
info. This could even extend to dynamic calls.

Original issue reported on code.google.com by paul.biggar on 24 May 2007 at 10:39