Skip to content

Instantly share code, notes, and snippets.

View justinpfister's full-sized avatar
💭
ecommerce development - nodejs scripts, php, magento 2, sql

Justin Pfister justinpfister

💭
ecommerce development - nodejs scripts, php, magento 2, sql
View GitHub Profile
@hamstar
hamstar / php-calling-class-test.php
Created August 3, 2011 13:51
A function that will return the calling class to the class using it
/***********************************************************
******* SIMPLE TEST **/
class A {
function t() {
echo get_calling_class();
}
}
class B {