PHP Classes

File: example-get.php

Recommend this page to a friend!
  Classes of Eka Syawan   sdata PHP Multi Curl   example-get.php   Download  
File: example-get.php
Role: Example script
Content type: text/plain
Description: Example script
Class: sdata PHP Multi Curl
Send HTTP requests to different Web servers
Author: By
Last change:
Date: 2 years ago
Size: 392 bytes
 

Contents

Class file image Download
<?php
require_once("sdata-modules.php");
/**
 * @Author: Eka Syahwan
 * @Date: 2017-12-11 17:01:26
 * @Last Modified by: Nokia 1337
 * @Last Modified time: 2019-05-29 22:02:20
 */
$url = array();
for (
$i=0; $i <12; $i++) {

   
$url[] = array(
       
'url' => 'http://ip-api.com/json?id='.$i,
       
'note' => 'optional',
    );

}
$result = $sdata->sdata($url);

print_r($result);