Magento get attribute options

Posted . Visible to the public.
$options = $attribute->getFrontend()->getSelectOptions();
foreach($options as $option){
    print $option['value'];
}