Php kullanarak bir html web sayfasında sözcük sayımı

0 Cevap php

Ben bir web sayfasının URL'sini alır ve sonra bir sözcük söz kaç kez yankıları bir PHP komut dosyası gerekir.

Example

This is a generic HTML page:

<html>
<body>
<h1> This is the title </h1>
<p> some description text here, <b>this</b> is a word. </p>
</body>
</html>

This will be the PHP script:

<?php
htmlurl="generichtml.com";
the script here
echo(result);
?>

Yani çıkış böyle bir tablo olacak:

WORDS       Mentions
This        2
is          2
the         1
title       1
some        1
description 1
text        1
a           1
word        1

Bu başlamak için, hatta daha iyi, zaten bunu yapan bir PHP komut dosyası var nasıl bir fikrin, onlar internette sörf yaparken arama botlarının yapmak gibi bir şeydir, öyle mi?

0 Cevap