当前位置: 首页>>代码示例>>PHP>>正文


PHP Import::getHost方法代码示例

本文整理汇总了PHP中Import::getHost方法的典型用法代码示例。如果您正苦于以下问题:PHP Import::getHost方法的具体用法?PHP Import::getHost怎么用?PHP Import::getHost使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Import的用法示例。


在下文中一共展示了Import::getHost方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: get_full_url

 public static function get_full_url($file = "")
 {
     $file = strpos($file, Import::getDocumentRoot()) === false ? Import::getHost() . $file : str_replace(Import::getDocumentRoot(), Import::getHost(), $file);
     return $file;
     /*$documentRoot = substr(Import::getDocumentRoot(), 0, -1);
     		$documentRoot = explode("/", $documentRoot);
     		//----------------------------------------------------------
     		$arr = array();
     		//----------------------------------------------------------
     		for ($i = 1; $i < sizeof($documentRoot); $i++) {
     			$file = strtr($file,array("/".$documentRoot[$i]."/" =>'/'));
     		}
     		//----------------------------------------------------------
     		$file = str_replace($_SERVER["HTTP_HOST"], "", $file);
     		//----------------------------------------------------------
     		$file = (substr($file, 0, 1) != "/") ? $file : substr($file, 1);
     		//----------------------------------------------------------
     		$url = (strpos($_SERVER["HTTP_HOST"], "localhost")) ? "" : "http://";
     		$url .= (substr($s = $_SERVER["HTTP_HOST"], -1) != "/") ? $s .= "/" : $s;
     		$url .= $file;
     		krumo($url);*/
     //----------------------------------------------------------
     return $url;
 }
开发者ID:awwthentic1234,项目名称:hey,代码行数:24,代码来源:GenFun.php

示例2: init

		   	.banner {
		   		overflow:hidden;
		   		margin:auto;
		   		text-align:center;
		   		background:#e9e9e9;
		   		height:100%;
		   		display:table-cell;
		   		vertical-align:middle;
		   		width:100%;
		   	}
		   	body {
		   		display:table;
		   	}
		   </style>
	   <div class = "compiler" onclick="window.open('http://52.11.82.242/Modules/DOM/examples/werm/modules/compiler/compiler_v0_module/?auto=true&url=<?php 
            echo Import::getHost() . $_SERVER['REQUEST_URI'];
            ?>
'); return false;"><p>COMPILE<p></div>
	   <!--</compile>-->
	</body>
	<!--<compile {"ignore":"true" }>DO NOT DELETE COMMENT!!!!!-->
   <script>
      var clickTag = "http://www.google.com";
   	$(document).ready(init);
   	function init() {
      	new <?php 
            echo $_POST['werm']['id'] . "_" . $_GET['size'];
            ?>
({size:"<?php 
            echo $_GET['size'];
            ?>
开发者ID:awwthentic1234,项目名称:hey,代码行数:31,代码来源:banners.php


注:本文中的Import::getHost方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。