Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 342 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 342 Bytes

Tor Php Curl

Simple | Php Tor Proxy Connector

Install and configure Tor

Ubuntu/Debian

sudo apt-get install tor

nano /etc/tor/torrc

Uncomment the : ControlPort 9051

Example usage | PHP

require 'Tor.php';

$Url = "https://api.ipify.org";
$Tor = new Tor($Url);
$TorConnect = $Tor->TorConnect();

echo $TorConnect;