PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Ej Corpuz   Auto Weibo Crawler   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Auto Weibo Crawler
Scrape and parse pages of the Weibo site profiles
Author: By
Last change: Update of index.php
Date: 2 months ago
Size: 307 bytes
 

Contents

Class file image Download
<?php

include_once 'scrapeweibo.php';

$username = "username";
$password = "password";
$ssoversion = "1.4.18";
$server = "http://localhost:1337/?";
$weiboLink = 'weiboprofile/pagelink';

$scrape = new scrapeWeibo($username, $password, $ssoversion, $server, $weiboLink);
$datas = $scrape -> getScrape();

?>