我已经搜索过这个答案,但找不到。我收到错误消息“解析错误:语法错误,意外的 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");
?>