I'm trying to write a script that will get the html code of a site and will have to calculate the number of the <li>
items within a particular <ul>
.
<html>
<head>...</head>
<body>
...
<ul class="the-list">
...
<li>...</li>
...
</ul>
...
</body>
</html>
So what I'm currently doing is to get the contents via file_get_contents()
, but then I have to get this particular <ul>
and somehow parse and foreach its <li>
s. What's the best approach of doing that?
Thanks
This can be done but
<ul>
tag must have an Id for the below php snippet to work:Load HTML then reference the target ul then the target sub tag that is
<li>
hereLike:
This will echo the count of li tags inside the target ul
Hope this helps