我想使用 php 来计算li
我的 html 代码中的每个标签,这样我就可以知道是否缺少结束标签(if the count of opening tags != the count of closing tags
)
是否可以使用php 正则表达式?
这是我的第一个 html 代码:
<ul>
<li>Coffee</li>
<li>Tea <!-- closing tag is missing -->
<li>Milk</li>
<li>Orange</li>
</ul>
怎么样if the count of opening tags == the count of closing tags
,但是表格本身有错误:
<ul>
<li>Coffee</li>
</li> <!-- opening tag is missing -->
<li>Milk</li>
<li>Orange</li>
<li>Tea <!-- closing tag is missing -->
</ul>
最后,除了这种思考如何解决问题的方式之外,还有没有更有效的方式使用 php 来完成该任务