我添加了以下代码来显示目录中的文件
$exclude = array("index.php","cssheadertop.php","cssheaderbottom.php");
$cssfiles = array_diff(glob("*.php"), $exclude);
for($i=0;$i<=5;$i++){
$filename = "http://8mags.com/lessons/css/".$cssfiles[$i];
outputtags($filename,true,true);
}
我不知道为什么,但它会无限期地继续运行。函数outputtags
没有问题,因为下面的代码工作正常
$exclude = array("index.php","cssheadertop.php","cssheaderbottom.php");
$cssfiles = array_diff(glob("*.php"), $exclude);
for($i=0;$i<=5;$i++){
$cssfile = array_rand($cssfiles);
$filename = "http://8mags.com/lessons/css/".$cssfiles[$cssfile];
outputtags($filename,true,true);
}
完美无缺。
以下是outputtags的代码
function outputtags($filename,$other,$programming)
{
$html = file_get_contents_curl($filename);
$doc = new DOMDocument();
@$doc->loadHTML($html);
$nodes = $doc->getElementsByTagName('title');
$title = $nodes->item(0)->nodeValue;
$metas = $doc->getElementsByTagName('meta');
for ($i = 0; $i < $metas->length; $i++)
{
$meta = $metas->item($i);
if($meta->getAttribute('property') == 'og:title')
$ogtitle = $meta->getAttribute('content');
if($meta->getAttribute('property') == 'og:image')
$ogimage = $meta->getAttribute('content');
if($other)
{if($meta->getAttribute('property') == 'og:description')
$ogdescription = $meta->getAttribute('content');}
}
echo '<p style="margin:0;"><a href='.$filename.' target=_blank>'.$ogtitle.'</a></p>';
if(!$other)
echo '<a href='.$filename.' target=_blank><img style="margin:0 0 40px 0;" src="'.$ogimage.'" alt=""></a></br>';
if($other)
{
if(!$programming)
echo '<a href='.$filename.' target=_blank><img src="'.$ogimage.'" alt=""></a></br>';
echo '<p style="margin:0 0 40px 0;">'.$ogdescription.'</p>';
}
}
根据我收到的评论中的建议,在最后写exit;
之后进行编辑
array(8) { [0]=> string(12) "3dbutton.php" [1]=> string(15) "basicbutton.php" [2]=> string(19) "basictextshadow.php" [5]=> string(11) "cssmenu.php" [6]=> string(21) "csstexteffectlogo.php" [7]=> string(22) "glossyroundbuttons.php" [8]=> string(18) "glowtextshadow.php" [10]=> string(26) "transitionhoverbuttons.php" }
最后使用foreach脚本后仍然会长时间运行任何建议
foreach ($cssfiles as $cssfile) {
$filename = "http://8mags.com/lessons/css/".$cssfiles[$cssfile];
outputtags($filename,true,true);
}
答案 0 :(得分:0)
你的数组键是0,1,2,5,6,7等...这就是为什么它在不使用随机时会中断,因为它正在寻找键3和4.你需要重新键入你的数组或使用&#34;为每个&#34;而不是以数字方式遍历密钥。
$exclude = array("index.php","cssheadertop.php","cssheaderbottom.php");
$cssfiles = array_diff(glob("*.php"), $exclude);
for($i=0;$i<=5;$i++){
$filename = "http://8mags.com/lessons/css/".$cssfiles[$i];
outputtags($filename,true,true);
}
运行脚本时,
$filename = "http://8mags.com/lessons/css/".$cssfiles[3];
$filename = "http://8mags.com/lessons/css/".$cssfiles[4];
不存在,所以它会中断。
您正在将http://8mags.com/lessons/css/
发送到outputtags()。