Is there any way to change the color-coding that PHP has (highlight_string()) per script?
I have skins on my site, and there is PHP code in some of them. I have manually changed these in php.ini, but this means they will stay that color through all scripts. Is there any way I can change them for each script individually?
The only method I could see (that would work quite well) is to replace all the previous colors with new ones using str_replace().
Any thoughts?
[Edit:] I was hoping I could use something like define()...