我正在寻找一种使用 PHP 执行以下操作的方法。
文件夹 /section/ 中有多个页面。红色.html、蓝色.html、绿色.html。并且在服务器的根目录下有一个 index.html 页面。
在这些页面中的每一个上,都有一个 id 为“list”的 div,其中包含一个带有列表项的 ul。如何在 /section/ 中的每个页面上检索此 div 中列表项的数量,并返回 index.html 页面上每个页面的数量。
为了更好地说明它:
每一页的结构:
<div id="list">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
red.html (33 list items within #list)
blue.html (20 list items within #list)
green.html (15 list items within #list)
index.html:
**Stats:**
Red: <php here fetching the number from red.html>
Blue: <php here fetching the number from blue.html>
Green: <php here fetching the number from green.html>