如何使用php计算URL源代码中的单词?
EX:
<body><p>hello</p>
<h1>hello</h1>
<h2>hello</h2>
<p>there</p>
我想要数字(你好)
所以外出必须是 你好= 3个字;
答案 0 :(得分:-1)
您可以使用substr_count功能:
echo substr_count($html, 'hello');
答案 1 :(得分:-1)
echo substr_count(file_get_contents("http://hellowood.eu/"),"hello");
输出:
11