Ingen beskrivning
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.

article-detail.htm 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. //判断tid
  3. /*
  4. * T:职称论文模板_(抓取文章标题)
  5. K:抓取文章标题,职称论文
  6. D:抓取文章摘要的前70个字符
  7. */
  8. function strip_tags_and_substr($string, $length = 70) {
  9. // 去除HTML标签
  10. $withoutTags = strip_tags($string);
  11. // 截取指定长度的字符串
  12. $result = mb_substr($withoutTags, 0, $length);
  13. return $result;
  14. }
  15. //默认值
  16. $seo_title = $eyou['field']['seo_title'];
  17. $key_keywords = $eyou['field']['seo_keywords'];
  18. $desc_ription = $eyou['field']['seo_description'];
  19. //var_dump($eyou['field']['typeid']);
  20. //var_dump($eyou["field"]["seo_title"]);
  21. //var_dump($eyou["field"]["aid"]);
  22. ?>
  23. {eyou:if condition='((int)$eyou.field.typeid === 127 && empty($eyou["field"]["seo_title"]))'}
  24. <?php
  25. //如果是职称论文参考
  26. $seo_title = '职称论文模板_'.$eyou['field']['title'];
  27. $key_keywords = $eyou['field']['title'].",职称论文";
  28. $content_sql = $eyou['field']['content_5'];
  29. //处理字符串
  30. $processedString = strip_tags_and_substr($content_sql, 70);
  31. $desc_ription = $processedString;
  32. ?>
  33. {eyou:else /}
  34. {eyou:if condition='(empty($eyou["field"]["seo_title"]))'}
  35. <?php
  36. //如果是其他栏目文章 且 默认seo为空
  37. //评审攻略 //职称答辩 //职称补贴 //职称评审常见问题 //职称评审政策资讯
  38. $seo_title = $eyou['field']['title'];
  39. $key_keywords = $eyou['field']['title'];
  40. $content_sql = $eyou['field']['content_5'];
  41. //处理字符串
  42. $processedString = strip_tags_and_substr($content_sql, 70);
  43. $desc_ription = $processedString;
  44. ?>
  45. {/eyou:if}
  46. {/eyou:if}