I'm looking to include other folders in my include path for PHP. I've seen this question:
http://stackoverflow.com/questions/24622/setting-php-include-path-on-a-per-site-basis
BUT I don't want to replicate the system path (I suppose I could but then it won't update if the system path is updated). What I would rather is to simply have a line which looked like:
ini_set('include_path', ini_get('include_path').$otherpaths);
Will this work, and is there some fundamental readon this is bad?