我打印客戶的電子郵件地址的頭,像這樣:截斷Magento的文本
<?php echo $email=$this->__('Hello, %s', Mage::getSingleton('customer/session')->getCustomer()->getEmail()); ?>
但是我想截斷爲一定數量由於與冗長的電子郵件地址的用戶。
我試圖使用magento擁有的truncate helper,但我沒有獲得任何快樂,想知道是否有人可以提供幫助。
<?php echo $email=$this->__('Hello, %s', Mage::getSingleton('customer/session')->getCustomer()->getEmail()->truncate('text', 12)); ?>
感謝
如果使用截斷它會刪除某些部分,但我不認爲好主意。作爲如果電子郵件地址是'abacdkdslsdfkjdfss @ yahoo.com',並且您試圖首先顯示12,則會顯示'abacdkdslsdfk'.this對您來說可以嗎? –
是的,你有解決方案嗎?謝謝 –