Posts

Showing posts with the label Smarty

2021 Top 4 Best Upcoming Flagship Smartphones : which are the best mobile phones for you..?

Image
  Hi here are the top 8 best upcoming flagship smartphones of 2021 with high-end level features improved cameras stunning design and many other next-generation technologies will be applied that you will really enjoy also the price and the release date of the smartphones are discussed. Number four Asus Zenfone 8 Number three OnePlus 9 Number two Huawei P50 Number one Apple iPad Pro 12.9

Truncate a string in Smarty

Image
Suppose you have a sentense in smarty that contains more characters and the rows of the table where you wants to show it will become wrap which sounds very bad. So you can use smarty variable modifier called 'truncate'. It has following syntaxes, truncate:how_many_characters_to_show:what_characters_appear_at_end truncate:int:int lets, $yourString = "Hello World"; {$yourString|truncate}//output// Hello World {$articleTitle|truncate:3}//output// Hel... {$articleTitle|truncate:3:""}//output// Hel {$articleTitle|truncate:3:"---"}//output// Hel--- You can also find more detail from http://www.smarty.net/manual/en/language.modifier.truncate.php