Voting

: max(zero, eight)?
(Example: nine)

The Note You're Voting On

ozana at omdesign dot cz
13 years ago
Simplest way how to gets Class without namespace

<?php
namespace a\b\c\d\e\f;

class
Foo {

public function
__toString() {
$class = explode('\\', __CLASS__);
return
end($class);
}
}

echo new
Foo(); // prints Foo
?>

<< Back to user notes page

To Top