本文整理匯總了PHP中http::setProxy方法的典型用法代碼示例。如果您正苦於以下問題:PHP http::setProxy方法的具體用法?PHP http::setProxy怎麽用?PHP http::setProxy使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類http
的用法示例。
在下文中一共展示了http::setProxy方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: dirname
<?php
ini_set('error_reporting', E_ALL);
ini_set('display_errors', 'On');
ini_set('display_startup_errors', 'On');
set_time_limit(1000);
define('DIR', dirname(__FILE__) . '/');
include DIR . 'langs/ru.php';
include DIR . 'lib/installer.php';
include DIR . 'lib/dropWebLight.php';
include DIR . 'lib/http.php';
$i = new installer();
$v = '0.1';
$repo = 'https://www.dropbox.com/sh/5heu2fsn394fnka/QTmCe0-vy7';
$h = new http();
$h->setProxy('localhost', 666);
$d = new dropWebLight($repo, $h);
$file_list = 'file_list.json';
$c['{collapsible}'] = 'false';
$use_current = isset($_POST['use_current']) && $_POST['use_current'] == 'on';
$lang['{use_this}'] = '<br/><input type="checkbox" name="use_current" class="use" ' . ($use_current ? 'checked' : '') . '> Использовать текущую?';
$c['{install_path}'] = DIR;
if (!$i->check('e|w', DIR . 'tmp')) {
mkdir(DIR . 'tmp');
}
if (!isset($_POST['app_name']) || !isset($_POST['install_path'])) {
$c['{app}'] = $lang['{app}'];
$c['{install_path}'] = DIR . 'tmp/';
} else {
$c['{app}'] = $_POST['app_name'];
$c['{install_path}'] = $_POST['install_path'];