php – 从另一个页面计算元素

我有两页,第A页和第B页.页面A将包含未知数量的无序列表元素.我无法控制有多少列表元素.

在页面B上,我想使用PHP从页面A中获取li的数量并显示该数字.这个想法是Page A将保存用户最喜欢的Wordpress帖子链接,而Page B将显示该数量的收藏夹.

任何帮助都会很精彩.谢谢

最佳答案 使用
PHP Simple HTML DOM Parser.
Download it从另一个页面解析html并包含到您的脚本中:

include('simple_html_dom.php');
$html = file_get_html('http://example.com/yourpage.php');
$licount = count($html->find('li')); // Here it is

好的.看起来OP不需要使用服务器端代码.使用javascript(不要忘记包含jQuery):

$(document).ready(function(){
    $.get("/favorites", function(data){
        $("#favorites").html($("li", $(data)).length)
    })
})

这将使用/ favorites文件中的lis数替换元素#favorites的内容

点赞