views:

45

answers:

1

Can I use a PHP 5.3 .user.ini file to pass information other than existing PHP settings? E.g. display_errors = On include_path = /usr/myapp/classes myapp_config_dir = /usr/myapp/config # <-- this is not a PHP setting

A: 

Sounds like a good opportunity to create your own ini file and use parse_ini_file() to read it.

John Conde