Home > Article > Backend Development > How to use functions in thinkPHP templates
This article mainly introduces the use of functions in thinkPHP templates, and compares and analyzes the use of PHP functions alone and the corresponding usage skills of PHP functions in thinkPHP templates in the form of examples. Friends in need can refer to the following
1. Method usage in php
<?php $var_num = "13966778888"; $str = substr_replace($var_num,'*****',3,5); echo $str; $var_date = time(); $str = date("Y-m-d H:i",$var_date); echo $str; ?>
{sh:$member.tel|substr_replace="*****",3,5} {sh:$member.addtime|date="Y-m-d H:i",###}
is not needed.
If it is not the first one, use
to mark the position.phpValue passing method and ajax method to implement verification function
phpMethod to implement message board function
App messaging in Redis Detailed explanation
Detailed explanation of application messaging of Redis in php
The above is the detailed content of How to use functions in thinkPHP templates. For more information, please follow other related articles on the PHP Chinese website!