ウェブサイトのソースコードを取得するプログラムがあるように、私たちの要件についてあなたと話し合いたいと思います。php関数を使ってを挿入したいだけです。以下のコードをご覧ください。
<?php
$url = "http://www.xyz.com" ;
function status($url){
//// here we check the particular url in our database and return the value.
}
$source = file_get_contents($url);
$insert = "<div id='status'>".status($url)."</div>" ;
?>
特定のURLのソースコードが以下に記載されている場合。
<html>
<head>
</head>
<body>
<div>
<p>please look at the URL is <a href="http://www.abc.com">Good Example</a>.</p>
</div>
</body>
</html>
関数の実装後、ソースコードは次のようになります。(以下をご覧ください。)
<html>
<head>
</head>
<body>
<div>
<p>please look at the URL is <a href="http://www.abc.com">Good Example</a><div id="status">Checked URL</div>.</p>
</div>
</body>
</html>
結論:-ソースコードのすべてのURLをチェックする必要があります(bodyタグのみ)。status()と呼ばれる実装された関数でソースコードを改革します。
私はこのタスクを完了するための初心者です。
ありがとうPP