Blogger Information
Blog 35
fans 0
comment 0
visits 16741
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php流程控制替换语法
手机用户311660634
Original
697 people have browsed it
  1. <?php
  2. // 加载外部文件
  3. // include 'template/public/header.php'
  4. require 'template/public/header.php';
  5. $news= require 'data/news.php';
  6. $items = require 'data/items.php'
  7. ?>
  8. <!-- 主体 -->
  9. <main>
  10. <!-- 新闻列表 -->
  11. <div class="news">
  12. <h3>新闻列表</h3>
  13. <div class="list">
  14. <?php foreach ($news as $new) : ?>
  15. <a href="<?=$new['url'] ?>"><?=$new['title'] ?></a>
  16. <?php endforeach ?>
  17. </div>
  18. </div>
  19. <!-- 产品列表 -->
  20. <div class="items">
  21. <h3>产品列表</h3>
  22. <div class="list">
  23. <div class="item">
  24. <?php foreach($items as $item): ?>
  25. <img src="<?=$item['url'] ?>" alt="" />
  26. <a href=""><?=$item['title'] ?> </a>
  27. <?php endforeach ?>
  28. </div>
  29. </div>
  30. </main>
  31. <?php
  32. // 加载外部文件
  33. include 'template/public/footer.php';
  34. ?>
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post