Deprecated create dynamic data

Yes. Dynamic properties are deprecated in PHP 8.2:
https://wiki.php.net/rfc/deprecate_dynamic_properties

One solution is to have the classes affected explicitly declare that they allow dynamic attributes. This thread from Stackoverflow could help:

If you’re using some script that uses dynamic properties, you’ll need to make sure you’re on the latest version, and ask the script’s authors for help with this if the latest version has issues.

4 Likes