File "Config.php"

Full Path: /www/wwwroot/shphe-en.com/smsapi/api_sdk/lib/Core/Config.php
File size: 416 bytes
MIME-type: --
Charset: utf-8

<?php

namespace Aliyun\Core;

use Aliyun\Core\Regions\EndpointConfig;

//config http proxy
define('ENABLE_HTTP_PROXY', FALSE);
define('HTTP_PROXY_IP', '127.0.0.1');
define('HTTP_PROXY_PORT', '8888');


class Config
{
    private static $loaded = false;
    public static function load(){
        if(self::$loaded) {
            return;
        }
        EndpointConfig::load();
        self::$loaded = true;
    }
}