I was wondering if I can set a pre defined parameter value in PHP to lower case instead of upper case as in the example below?
Example 1 – upper case:
imagefilter($im, IMG_FILTER_GRAYSCALE)
Example 2 – lower case:
imagefilter($im, img_filter_grayscale)
see PHP manual: Constants
And why would you want to do this?