| 123456789101112131415161718 |
- <?php
- namespace app\common\taglib;
- use think\template\TagLib;
- use think\Db;
- class Macdiy extends Taglib {
- protected $tags = [
- 'test'=> ['attr'=>'order,by,num'],
- ];
- public function tagTest($tag,$content)
- {
- dump($tag);
- dump($content);
- die;
- }
- }
|