Macdiy.php 294 B

123456789101112131415161718
  1. <?php
  2. namespace app\common\taglib;
  3. use think\template\TagLib;
  4. use think\Db;
  5. class Macdiy extends Taglib {
  6. protected $tags = [
  7. 'test'=> ['attr'=>'order,by,num'],
  8. ];
  9. public function tagTest($tag,$content)
  10. {
  11. dump($tag);
  12. dump($content);
  13. die;
  14. }
  15. }