我想与您讨论我们的要求,就像我们有一个获取网站源代码的程序一样。我们只想插入一些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>" ;
?>
如果下面提到了特定网址的源代码。
<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>
结论: - 我们必须检查源代码的每个网址(仅在正文标记中)。使用我们实现的函数 status()来改进源代码;
我是初学者完成这项任务。
由于 PP