PHP Constant expression contains invalid operations new stdClass Error

I got this PHP error of “Constant expression contains invalid operations”.

php Constant expression contains invalid operations
php Constant expression contains invalid operations

This is due to a function variable default value of new stdClass()

This happens on PHP version 8.0.30 on my hosting server.

php vesion 8.0.30
php vesion 8.0.30

This errors doesn’t appear on my development laptop which is version 8.2.4.

php version 8.2.4
php version 8.2.4

Solution

I put “null” instead of “new stdClass()” and then set it to new stdClass if the variable is null.