I have my include path on my php.ini as follows:
include_path = ".:/php/includes:/var/www/html"
Now, I want to add another directory to this path. Is this possible?
Should have read the previous line:
include_path = ".:/path1 : path2"
Yup, just add another directory separating it from the last with another colon (Unix) or a semicolon (Windows)
include_path = ".:/path1:/path2:/path3:path4"