Is there any way to remove special symbols in smarty?

now we have a problem. There is a $sign in a string. I want to remove the $symbol from smarty, and then take out the following number

.
Php
Mar.30,2021

smarty supports built-in functions and custom functions. Custom function implementation documentation: https://www.smarty.net/docs/z.

of course, if you are worried that the $in the string will lead to a template parsing error, you can use to avoid Smarty parsing to deal with

.
Menu