You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo"sum: " . $a + $b;
// PHP would previously interpret it like this:echo ("sum: " . $a) + $b;
// PHP 8 will make it so that it's interpreted like this:echo"sum: " . ($a + $b);
The text was updated successfully, but these errors were encountered:
RFC: https://wiki.php.net/rfc/concatenation_precedence
See: https://github.com/php/php-src/pull/4002/files
Example:
The text was updated successfully, but these errors were encountered: