0

我一定有内存泄漏或某些东西只是在我的服务器上的某个地方吃内存。例如,如果我 file_get_contents( http://www.theknot.com ) 它将无法连接到服务器,但它没有关闭,或者 mysql 关闭连接,或者在极端情况下完成了服务器的大量淘汰时间我们甚至无法得到一个ping。我知道它在 preg_match_all if 块中的某个地方,但我不知道什么会跑到我只能假设是由于从远程站点获取的内容中的任何内容而对正则表达式匹配进行大量处理。有任何想法吗?

<?php 

class Utils_Linkpreview extends Zend_Db_table
{

    public function getPreviews($url) {
        $link = $url;
        $width = 200;
        $height = 200;
        $regex = '/<img[^\/]+src="([^"]+\.(jpe?g|gif|png))/';
        /// $regex = '/<img[^\/]+src="([^"]+)/';
        $thumbs = false;

        try {
            $data = file_get_contents($link);

        } catch (Exception $e) {
            print "Caught exception when attempting to find images: ". $e->getMessage(). "\n";
        }

        if (($data) && preg_match_all($regex, $data, $m, PREG_PATTERN_ORDER)) {
            if (isset($m[1]) && is_array($m[1])) {
                $thumbs = array();
                foreach (array_unique($m[1]) as $url) {
                    if (
                            ($url = $this->rel2abs($url, $link)) &&
                            ($i = @getimagesize($url)) &&
                            $i[0] >= ($width-10) &&
                            $i[1] >= ($height-10)
                    ) {
                        $thumbs[] = $url;
                    }
                }
            }

        }
        return $thumbs;
    }

    private function rel2abs($url, $host) {
        if (substr($url, 0, 4) == 'http') {
            return $url;
        } else {
            $hparts = explode('/', $host);

            if ($url[0] == '/') {
                return implode('/', array_slice($hparts, 0, 3)) . $url;
            } else if ($url[0] != '.') {
                array_pop($hparts);
                return implode('/', $hparts) . '/' . $url;
            }
        }
    }
}
?>

编辑- Amal Murali 的评论使用 PHP 的 DomDocument 为我指明了一个更好的方向。谢谢芽!

结果如下:

public function getPreviews($url) {
    $link = $url;
    $thumbs = false;

    try {
        $html = file_get_contents($link);

    } catch (Exception $e) {
        print "Caught exception when attempting to find images: ". $e->getMessage(). "\n";
    }

    $dom = new DOMDocument();
    @$dom->loadHTML($html);
    $x = new DOMXPath($dom); 

    foreach($x->query("//img[@width > 200 or substring-before(@width, 'px') > 200 or @height > 200 or substring-before(@height, 'px') > 200]") as $node) 
    {
        $url = $node->getAttribute("src");
        $thumbs[] = $this->rel2abs($url, $link);
    }       

    return $thumbs;
}
4

1 回答 1

0

编辑 - Amal Murali 的评论使用 PHP 的 DomDocument 为我指明了一个更好的方向。谢谢芽!

结果如下:

公共函数 getPreviews($url) { $link = $url; $拇指=假;

try {
    $html = file_get_contents($link);

} catch (Exception $e) {
    print "Caught exception when attempting to find images: ". $e->getMessage(). "\n";
}

$dom = new DOMDocument();
@$dom->loadHTML($html);
$x = new DOMXPath($dom); 

foreach($x->query("//img[@width > 200 or substring-before(@width, 'px') > 200 or @height > 200 or substring-before(@height, 'px') > 200]") as $node) 
{
    $url = $node->getAttribute("src");
    $thumbs[] = $this->rel2abs($url, $link);
}       

return $thumbs;

}

于 2013-09-16T18:45:12.457 回答