Every so often in PHP we accidentally use the '+' operator instead of the '.' operator when intending to concatenate two strings, especially on sites that use both PHP and JavaScript since usage differs. Doing an arithmetic operation on two strings is never used on our sites (we covert strings to numbers first when necessary).
Is there a way to get PHP to report a warning/error when attempting an arithmetic operation on two strings? This would be very useful in preventing programming errors.