我想和你讨论一下我们的需求,比如我们有一个程序可以获取网站的源代码。我们只想插入一些 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