コード例 #1
0
ファイル: ProductParser.class.php プロジェクト: reis/sains
 public function __construct($url)
 {
     $this->url = $url;
     $this->html = WebData::getContent($url);
     $this->products = $this->parseHtml();
     $this->products_json = json_encode($this->products);
 }
コード例 #2
0
ファイル: WebData.class.php プロジェクト: reis/sains
 public function getSize($url)
 {
     $page = WebData::getContent($url);
     return round(strlen($page) / 1024, 2) . ' KB';
 }