Php7.1 about the problem that two non-numeric strings add up to an error!

in php7.1, the addition of two strings will report an error as long as one of the non-numeric characters is non-numeric, and non-numeric characters cannot be automatically converted to numeric values, such as" alphanumeric characters"or "1numerical characters". In php7.0, characters are automatically converted to numeric values when two strings are added. Is it automatically converted when string operations are not supported in version 7.1 and later? Or is it a problem with php configuration?

Php
Aug.05,2021

you may have turned on mandatory

define(strict_types=1);
Menu