Posts mit dem Label php class name namespace werden angezeigt. Alle Posts anzeigen
Posts mit dem Label php class name namespace werden angezeigt. Alle Posts anzeigen

Mittwoch, 29. Januar 2014

PHP get class name without the namespace

This is the easiest way to get the name of the current class without the namespace:

public function getName() {
    $path = explode('\\', __CLASS__);
    return array_pop($path);
}