国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
918B

  1. <?php
  2. if(!defined('DEDEINC')){
  3. exit("Request Error!");
  4. }
  5. /**
  6. * 这仅是一个演示标签
  7. *
  8. * @version $Id: demotag.lib.php 1 9:29 2010年7月6日Z tianya $
  9. * @package DedeCMS.Taglib
  10. * @copyright Copyright (c) 2020, DedeBIZ.COM
  11. * @license https://www.dedebiz.com/license
  12. * @link https://www.dedebiz.com
  13. */
  14. function lib_demotag(&$ctag,&$refObj)
  15. {
  16. global $dsql,$envs;
  17. //属性处理
  18. $attlist="row|12,titlelen|24";
  19. FillAttsDefault($ctag->CAttribute->Items,$attlist);
  20. extract($ctag->CAttribute->Items, EXTR_SKIP);
  21. $revalue = '';
  22. //你需编写的代码,不能用echo之类语法,把最终返回值传给$revalue
  23. //------------------------------------------------------
  24. $revalue = 'Hello Word!';
  25. //------------------------------------------------------
  26. return $revalue;
  27. }