get class name using test file this is useful when rewrite concepts to find which class is presently using
<?phpecho "<pre>";
error_reporting(E_ALL | E_STRICT);
ini_set('display_errors', 1);
require_once 'app/Mage.php';
umask(0);
Mage::app('default');
$boject = Mage::getModel('customer/customer');
echo get_class($boject);
Comments
Post a Comment