I have this:
if( preg_match('/[A-Z]/', $string) ) {
…but I want to exclude a set value so if the value THISVALUE is the only capitalised value then the if statement should return false. So, if THIS VALUE exists as well as other capitals, then it should return true, but fail if all are lower case (or if THIS VALUE is the only capitalised value).
I can’t think how to do this.