您好,我想将这个小代码转换为curl。这可能吗?
<?php
$url = 'http://www.example.com/test.php';
$file_headers = @get_headers($url);
if ( strpos($file_headers[0], "200") )
{
$check = @file_get_contents($url);
if (stristr($check,"/Style.js"))
echo "<font color='green'>FOUND</font>";
else
echo "<font color='red'>NOT FOUND</font>";
}
?>
我正在尝试检查网站的状态,然后查看是否 指向文件的链接&#34; /Style.js" (只是这个子字符串)是否存在于test.php文件中。