.. _object-not-initialized: Object not initialized ---------------------- .. meta:: :description: Object not initialized: This error appears with ``intl`` and ``spl`` extensions. :og:image: https://php-errors.readthedocs.io/en/latest/_static/logo.png :og:type: article :og:title: Object not initialized :og:description: This error appears with ``intl`` and ``spl`` extensions :og:url: https://php-errors.readthedocs.io/en/latest/messages/object-not-initialized.html :og:locale: en :twitter:card: summary_large_image :twitter:site: @exakat :twitter:title: Object not initialized :twitter:description: Object not initialized: This error appears with ``intl`` and ``spl`` extensions :twitter:creator: @exakat :twitter:image:src: https://php-errors.readthedocs.io/en/latest/_static/logo.png .. raw:: html Description ___________ This error appears with ``intl`` and ``spl`` extensions. It happens when an object was not fully initialized with the extension: it was only extended and the parent constructor was omitted. This leaves the custom object valid, but not finalized from the parent point of view. This error may also happen when the object keeps being used, after an ``unset()`` call, or ``__destructor`` call. Example _______ .. code-block:: php key(); } catch (Error $e) { echo $e->getMessage(), \n; } ?> Solutions _________ + Call ``parent::__construct`` in the custom constructor. + Remove any call to the object after destruction. Related Error Messages ______________________ + :ref:`typed-property-%s::$%s-must-not-be-accessed-before-initialization` Changed Behavior ________________ This error may appear following an evolution in behavior, in previous versions. See ` `_.