Magento で属性値を取得するにはさまざまな方法があります。
$options=$_product->getAttributeText('some_attribute')
$options=$_product->getResource()->getAttribute('some_attribute')->getFrontend()->getValue($_product)
$options=$_product->getSomeAttribute()
上記の方法はどのように異なり、属性値を取得する適切な方法はどれですか?