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


PHP url_domain函数代码示例

本文整理汇总了PHP中url_domain函数的典型用法代码示例。如果您正苦于以下问题:PHP url_domain函数的具体用法?PHP url_domain怎么用?PHP url_domain使用的例子?那么, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: url_script

/**
 *
 * @note     Query String 은 제외하고 PHP 스크립트의 URL 만 리턴한다.
 * @return string
 *
 * @note 리턴 예제: http://work.org/backend/index.php
 */
function url_script()
{
    return url_domain() . $_SERVER["PHP_SELF"];
}
开发者ID:thruthesky,项目名称:backend,代码行数:11,代码来源:function.php

示例2: license_info

/**
 * 授权信息内容
 *
 * @return  str
 */
function license_info()
{
    if ($GLOBALS['_CFG']['licensed'] > 0) {
        /* 获取HOST */
        if (isset($_SERVER['HTTP_X_FORWARDED_HOST'])) {
            $host = $_SERVER['HTTP_X_FORWARDED_HOST'];
        } elseif (isset($_SERVER['HTTP_HOST'])) {
            $host = $_SERVER['HTTP_HOST'];
        }
        $url_domain = url_domain();
        $host = 'http://' . $host . $url_domain;
        $license = '<a href="http://www.ecshop.com/license.php?product=ecshop_b2c&url=' . urlencode($host) . '" target="_blank"
>&nbsp;&nbsp;Licensed</a>';
        return $license;
    } else {
        return '';
    }
}
开发者ID:YangZeSummer,项目名称:NanJingSecond-Hand,代码行数:23,代码来源:lib_main.php

示例3: url

 private function url($filename)
 {
     $url = url_script();
     $path = parse_url($url, PHP_URL_PATH);
     $path = str_replace('/index.php', '', $path);
     return url_domain() . $path . '/' . PATH_DATA_UPLOAD . '/' . $filename;
 }
开发者ID:thruthesky,项目名称:backend,代码行数:7,代码来源:Data.php


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