Skip to content

Instantly share code, notes, and snippets.

View logoszGrafikus's full-sized avatar

Anikó Szvetkó logoszGrafikus

View GitHub Profile
@stillfinder
stillfinder / self_vs_static.php
Last active October 24, 2025 18:39
Self vs Static in PHP
<?php
class Animal
{
public static $name = "animal";
// Return the class that is represented by "self::"
public function getSelfClass()
{
return get_class();