Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

PHP Native Attribute

PHP supports a system of attributes, to add local configuration to methods, classes, etc. There are currently, as of PHP 8.5, 7 attributes:

  • Attribute
  • AllowDynamicProperties
  • ReturnTypeWillChange
  • SensitiveParameter
  • Override
  • Deprecated
  • NoDiscard
  • DelayedTargetValidation.
<?php

class X extends Y {
    #[Override]
    function foo() {
        
    }
}

?>

Documentation

See Also