Skip to content

Instantly share code, notes, and snippets.

@herveguetin
Last active November 13, 2015 19:21
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 herveguetin/22659d6b7883a9127b91 to your computer and use it in GitHub Desktop.
Save herveguetin/22659d6b7883a9127b91 to your computer and use it in GitHub Desktop.
Transform any string to url-like string in Magento (useful for dynamic CSS classes for example)
<?php
$string = 'My String';
$urlKeyString = Mage::getSingleton('catalog/product')->formatUrlKey($string);
// Returns => my-string
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment