Skip to content

Instantly share code, notes, and snippets.

@tecmec
Created August 4, 2012 07:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tecmec/3255331 to your computer and use it in GitHub Desktop.
Save tecmec/3255331 to your computer and use it in GitHub Desktop.
Magento Debugging
<?php
Mage::log( $object->debug() ) # Komplette Collection debuggen
Mage::log( $object->getData() ) # Collection-Daten ausgeben
Mage::log( get_class($object) ) # Name der Klasse
Mage::log( get_class_methods($object) ) # Methode der Klasse
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment