summaryrefslogtreecommitdiffstats
path: root/php_http_client/config.php
blob: ba33bef00d5af3cfc96405a62285bdad193169d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
class Config{
  function __construct($base_path, $config_filename){
    $handle = fopen($base_path.'/'.$config_filename, "r");
    while (($line = fgets($handle)) !== false) {
        putenv(trim(preg_replace('/\s+/', ' ', $line)));
    }
    fclose($handle);
  }
}
?>