Snippets tagged “self”
3 snippets use this tag.
- How do I type hint a method with the type of the enclosing class?Python
In Python, you can use the self keyword to refer to the instance of the enclosing class within a method.
- What do __init__ and self do in Python?Python
__init__ is a special method in Python classes, also known as a constructor.
- When to Use self and $this in PHPPHP
This snippet is dedicated to the the main ways of using self and $this keywords in PHP. Here, you will learn how to use them and their main differences.