Dreamweaver shows an error for the Null Coalescing Operator (??), a PHP 7 feature
Not sure if it's a bug report or a question.
I use the null coalescing operator in a few of my pages to easily check if a variable exists before using it in order to easily avoid "variable does not exist" errors. Usually POST fields.
I set Dreamweaver to PHP 7 under preferences, but it still flags those lines as having errors.
Is there a way to tell it that the ?? is valid?
Explanation of the Null Coalescing Operator
https://www.phptutorial.net/php-tutorial/php-null-coalescing-operator/
