页面上的图像计数器

我正在尝试获取当前页面中存在的图像数量。我刚刚找到了一个 JS 方法,但我想通过 php 找到一个方法。我如何通过 PHP 获得该脚本的相同结果?

function myFunction() {
  var x = document.images.length;
  document.getElementById("demo").innerHTML = x;
}


人到中年有点甜
浏览 102回答 1
1回答

米琪卡哇伊

尝试这个:<?PHP$code= file_get_contents($url); //this line is getting HTML code from the websiteecho substr_count($code, '<img');?>
打开App,查看更多内容
随时随地看视频慕课网APP