本文整理汇总了PHP中bootstrap::execute方法的典型用法代码示例。如果您正苦于以下问题:PHP bootstrap::execute方法的具体用法?PHP bootstrap::execute怎么用?PHP bootstrap::execute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类bootstrap
的用法示例。
在下文中一共展示了bootstrap::execute方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: exit
/* System stuff
*/
require "config.php";
require "system.php";
if (substr($_CONFIG["proxy_hostname"], 0, 2) == "*.") {
exit("Incorrect proxy_hostname set in config.php.");
}
session_name(SESSION_KEY);
session_set_cookie_params(0, "/", "." . $_CONFIG["proxy_basename"]);
session_start();
unset($_COOKIE[SESSION_KEY]);
/* Bootstrap
*/
$bootstrap = new bootstrap($_CONFIG);
$result = $bootstrap->execute();
if ($result == 0) {
/* Start proxy
*/
if ($_SERVER["HTTPS"] == "on") {
$proxy = new proxys($_CONFIG, $bootstrap->hostname, $_SERVER["SERVER_PORT"]);
} else {
$proxy = new proxy($_CONFIG, $bootstrap->hostname, $_SERVER["SERVER_PORT"]);
}
/* Other proxy
*/
if ($_CONFIG["forwarding_proxy"] != null) {
list($protocol, $hostname, $port) = explode(":", $_CONFIG["forwarding_proxy"], 3);
$hostname = trim($hostname, "/");
$port = trim($port, "/");
if ($hostname != "" && $port != "") {