Magento 2 truncate string to specific limit.

Magento 2 You can truncate the string using Magento best practice.

By default, You can truncate the string using substr() PHP method.

Magento gives Out of the box feature for a truncate string using Magento\Framework\Stdlib\StringUtils class. Continue reading “Magento 2 truncate string to specific limit.”

Magento 2 convert date to timestamp using best practice.

Magento 2 You can Converts input date into GMT timestamp using Magento\Framework\Stdlib\DateTime\DateTime Class.

You can set easily convert timestamp using core PHP by function strtotime().
like, strtotime(‘+1 years’);

Using Magento You can Converts input date into GMT timestamp by using Magento best practice way by injecting class dependency in the construct method. Continue reading “Magento 2 convert date to timestamp using best practice.”

Magento 2 Get Date after 1 year period.

Magento 2 you can get a date after 1 year period using Magento\Framework\Stdlib\DateTime\DateTime Class.

You can get easily using PHP by function date().
date(‘Y-m-d’, strtotime(‘+1 years’));

Using Magento You can get a date after 1 year by using Magento best practice way by injecting class dependency in the construct method. Continue reading “Magento 2 Get Date after 1 year period.”