0

我已经搜索过这个答案,但找不到。我收到错误消息“解析错误:语法错误,意外的 T_VARIABLE”,并认为它与第 30 行列出的“a”有关。任何想法如何使此代码正确?

<?php
class Crawler {
    protected $markup = ”;
    public function __construct($uri) {
        $this->markup = $this->getMarkup($uri);
    }

    public function getMarkup($uri) {
        return file_get_contents($uri);
    }

    public function get($type) {
        $method = array($this,”_get_”.$type);
        if (method_exists($this,$method[1]))
            return call_user_func($method);
        return false;
    }

    protected function _get_images() {
        if (!empty($this->markup)){
            preg_match_all("/<img([^>]+)\/>/i", $this->markup, $images);
            return !empty($images[1]) ? $images[1] : FALSE;
        }
    }

    protected function _get_links() {
        if (!empty($this->markup)){
            preg_match_all("/<a([^>]+)\>(.*?)\<\/a\>/i", $this->markup, $links);
            return !empty($links[1]) ? $links[1] : FALSE;
        }
    }
}
a 
$crawl = new Crawler("http://www.facebook.com");
$images = $crawl->get("images");
$links = $crawl->get("links");
?>
4

2 回答 2

0

您可以尝试;在您a的第 30 行之后放置一个

于 2012-07-14T14:02:49.907 回答
0

删除它a,并使用直引号"而不是当前的弯引号。

于 2012-07-14T14:08:43.330 回答