Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mathewjosephh/605048d6bf2ac5e4229b1e2aa85ba844 to your computer and use it in GitHub Desktop.
Save mathewjosephh/605048d6bf2ac5e4229b1e2aa85ba844 to your computer and use it in GitHub Desktop.
Magento – How to Check if the SKU is Exist?
$sku = 'Your Product Sku';
$id = Mage::getModel('catalog/product')->getIdBySku($sku);
if ($id){
echo "SKU {$sku} exists";
}
else{
echo "SKU {$sku} does not exist";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment