Modified example.php
This commit is contained in:
parent
2a004a54be
commit
c876202c20
14
example.php
14
example.php
|
@ -9,17 +9,23 @@
|
||||||
require __DIR__ . '/vendor/autoload.php';
|
require __DIR__ . '/vendor/autoload.php';
|
||||||
|
|
||||||
$client = new \Sikofitt\Tor\TorClient();
|
$client = new \Sikofitt\Tor\TorClient();
|
||||||
//$client->get('http://32b5oz2bbtn6gqj3.onion/index.php/Main_Page');
|
$client->get('http://32b5oz2bbtn6gqj3.onion/index.php/Main_Page');
|
||||||
|
$images = $client->images();
|
||||||
|
foreach($images as $image)
|
||||||
|
{
|
||||||
|
$result[] = $image->toArray();
|
||||||
|
}
|
||||||
|
|
||||||
$client->get('http://4sy6ebszykvcv2n6.onion/');
|
$client->get('http://4sy6ebszykvcv2n6.onion/');
|
||||||
|
|
||||||
//$client->get('https://de.indymedia.org/index.shtml');
|
|
||||||
|
|
||||||
$images = $client->images();
|
$images = $client->images();
|
||||||
//dump($images);
|
//dump($images);
|
||||||
|
//$client->get('https://de.indymedia.org/index.shtml');
|
||||||
foreach($images as $image) {
|
foreach($images as $image) {
|
||||||
|
|
||||||
$result[] = $image->toArray();
|
$result[] = $image->toArray();
|
||||||
}
|
}
|
||||||
dump($result);
|
dump($result);
|
||||||
dump(json_encode(serialize($result)));
|
|
||||||
file_put_contents('data.json', json_encode($result, JSON_PRETTY_PRINT));
|
|
||||||
|
|
Loading…
Reference in New Issue