I was curious if PHP as an Apache module makes its ini values available in htaccess files? For example, I know that in a mod_rewrite rule, you can access environment variables like %{HTTP_HOST}, so would it, for example, be possible to append to PHP's include_path in an htaccess, rather than in each individual script? Something like the following (which doesnt work, but illustrates what I'd like to do).
php_value include_path "%{INCLUDE_PATH}:/home/sitename/library"
That (or something like it) would allow me to permenantly add to the existing include path, so even if the original path in php.ini is changed, I wouldn't have to change each htaccess. Is something like this possible?