Search⌘ K
AI Features

$this and self

Explore how to use the $this pseudo-variable with the object operator to access non-static class members and the self keyword with the scope resolution operator to manage static properties and methods in PHP. Understand their differences and proper usage within class contexts.

$this

The pseudo-variable $this refers to a member of a class according to an instance of that class. ...