|
@@ 207-217 (lines=11) @@
|
| 204 |
|
return parent::noDataDefaultValue(); |
| 205 |
|
} |
| 206 |
|
|
| 207 |
|
public static function getBacklinkCount($url = false) |
| 208 |
|
{ |
| 209 |
|
$xpath = self::_getXPath($url); |
| 210 |
|
|
| 211 |
|
$queryList = array( |
| 212 |
|
"//section[@id='linksin-panel-content']/div/span/div/span", |
| 213 |
|
"//*[@id='linksin_div']/section/div/div[1]/span" |
| 214 |
|
); |
| 215 |
|
|
| 216 |
|
return static::parseDomByXpathsToInteger($xpath, $queryList); |
| 217 |
|
} |
| 218 |
|
|
| 219 |
|
public static function getPageLoadTime($url = false) |
| 220 |
|
{ |
|
@@ 219-229 (lines=11) @@
|
| 216 |
|
return static::parseDomByXpathsToInteger($xpath, $queryList); |
| 217 |
|
} |
| 218 |
|
|
| 219 |
|
public static function getPageLoadTime($url = false) |
| 220 |
|
{ |
| 221 |
|
$xpath = self::_getXPath($url); |
| 222 |
|
|
| 223 |
|
$queryList = array( |
| 224 |
|
"//section[@class='row-fluid panel-wrapper '][9]/section/p", |
| 225 |
|
"//*[@id='section-load']/div/section/p" |
| 226 |
|
); |
| 227 |
|
|
| 228 |
|
return static::parseDomByXpathsWithoutTags($xpath, $queryList); |
| 229 |
|
} |
| 230 |
|
|
| 231 |
|
/** |
| 232 |
|
* @access public |