1
0
Fork 0
mirror of https://github.com/GeoffreyFrogeye/phroxyp.git synced 2024-05-16 23:55:51 +02:00

Proxy now callable as an object

Well, "object"...
This commit is contained in:
Geoffrey Frogeye 2015-04-09 21:49:50 +02:00
parent b287949ead
commit bc30ea6f88

View file

@ -1,12 +1,7 @@
<?php
// PROXY
// Config
$serv = 'google.com'; // TODO External file
$port = 80;
$root = '';
$localRoot = '';
class Proxy {
public function __construct($serv, $port = 80, $root = '/', $localRoot = '') {
// Functions
function str_replace_once($search, $replace, $subject) { // TODO Credit
$pos = strpos($subject, $search);
@ -97,4 +92,7 @@ if (!$fp) { // TODO ErrorCode, ErrorDocument
}
fclose($fp);
}
}
}
?>