...
Parameters | An array of options including the following. |
---|---|
$url | A String containing the requested URL. |
$post | An Array or String containing post data or array. |
$headers | An Array or String containing page header type. |
$referer | An Array or String containing url or page to re-direct to. |
$header_in_output=false | A boolean value that defines if the header is included in the output. |
$timeout_second=30 | a numeric value for CURLOPT_CONNECTTIMEOUT. |
$curlOpts = array() | key-value pair for curl options |
Return |
---|
...
Values | |
---|---|
| A String. All results from |
Code Block | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
$t->fetch("[http://blinkmobile.com.au/");] \\ return $t->result; |
...
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
$t->fetch("http://blinkmobile.com.au/");
if($t->contains("Logged Successful")){
// do something
}
// read more data from scrap
$t->refresh( );
return $t->result;
|
Return |
---|
...
Values | |
---|---|
| A String. Returns the last requested source into $t->result |
$t->submitForm( )
Often known as a "PassThru"... On occasions when you are retrieving a page source into an Interaction you may require authorisation from a login form.
...
Parameters | |
---|---|
$mystring | A String. The reference to the form name. 0 can be used instead to select the first form found, 1 then next and so on. |
$myarray | As Array of values to be passed to the form. |
Return |
---|
...
Values | |
---|---|
| A String. Returns requested source into $t->result |
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
$t->fetch("[http://support.blinkmobile.com.au/");] $t->submitForm( 0, array( 'username'=>'YourUserName', 'passwd'=>'YourPassword' ) ); return $t->result; // Page source returned here for additional processing |
...