本文整理汇总了PHP中Ubirimi\Util::runsOnLocalhost方法的典型用法代码示例。如果您正苦于以下问题:PHP Util::runsOnLocalhost方法的具体用法?PHP Util::runsOnLocalhost怎么用?PHP Util::runsOnLocalhost使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Ubirimi\Util
的用法示例。
在下文中一共展示了Util::runsOnLocalhost方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>
<html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js"> <!--<![endif]-->
<?php
require_once __DIR__ . '/_header.php';
?>
<body>
<header style="background-color: #ffffff">
<div align="center">
<?php
if (Util::runsOnLocalhost()) {
?>
<a href="http://ubirimi.lan"><img src="/img/site/bg.logo.png" /></a>
<?php
} else {
?>
<a href="https://www.ubirimi.com"><img src="/img/site/bg.logo.png" /></a>
<?php
}
?>
</div>
</header>
<div>
<?php
require_once __DIR__ . '/' . $content;
示例2: getHttpHost
public static function getHttpHost()
{
$httpHOST = $_SERVER['HTTP_HOST'];
if (Util::runsOnLocalhost()) {
$urlPrefix = 'http://';
} else {
if (!empty($_SERVER['HTTPS'])) {
$urlPrefix = 'https://';
} else {
$urlPrefix = 'http://';
}
}
if (isset($urlData['scheme'])) {
$urlPrefix = '';
}
$httpHOST = $urlPrefix . $httpHOST;
return $httpHOST;
}