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


PHP admin::getDocumentRoot方法代码示例

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


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

示例1: files

 function files()
 {
     global $HTTP_GET_VARS, $HTTP_POST_VARS;
     $this->chid = $HTTP_GET_VARS["chid"];
     $this->name = $HTTP_GET_VARS["name"];
     $this->names = $HTTP_GET_VARS["names"];
     $this->from = $HTTP_GET_VARS["from"];
     $this->to = $HTTP_POST_VARS["to"];
     $this->dir = preg_replace("'(\\/\\.\\.)+|(\\.\\.\\/)+|(\\.\\.)+|/\$'is", "", urldecode($HTTP_GET_VARS["dir"]));
     $this->global_dir = admin::getDocumentRoot() . $this->root . $this->dir;
 }
开发者ID:BackupTheBerlios,项目名称:sitexs,代码行数:11,代码来源:files.class.php

示例2: print_copy_link

function print_copy_link($path, $name)
{
    global $server_path, $HTTP_SERVER_VARS;
    $imgsize = GetImageSize(urldecode($path));
    $width = $imgsize[0];
    $height = $imgsize[1];
    $path = ereg_replace("/+", "/", $path);
    $path = ereg_replace(admin::getDocumentRoot(), "", $path);
    //$name=ereg_replace("\....$","",$name); // remove the extension in the name
    //$name=ucfirst(ereg_replace("_"," ",$name)); // replace underscores by spaces and capitalize
    $str .= "<a href=\"#\" onClick=\"top.document.frmLinkPick.LinkUrl.value='{$path}'; return false;\">{$name}</a>";
    return $str;
}
开发者ID:BackupTheBerlios,项目名称:sitexs,代码行数:13,代码来源:fl.php

示例3: print_copy_link

function print_copy_link($path, $name)
{
    global $server_path, $HTTP_SERVER_VARS;
    $imgsize = GetImageSize(urldecode($path));
    $width = $imgsize[0];
    $height = $imgsize[1];
    $path = ereg_replace("/+", "/", $path);
    $path = ereg_replace(admin::getDocumentRoot(), "http://" . $HTTP_SERVER_VARS["HTTP_HOST"] . "", $path);
    //$name=ereg_replace("\....$","",$name); // remove the extension in the name
    //$name=ucfirst(ereg_replace("_"," ",$name)); // replace underscores by spaces and capitalize
    $str .= "<a href=\"#\" onClick=\"top.document.forms[0].elements['ImgUrl'].value='{$path}';";
    $str .= "top.document.forms[0].elements['ImgWidth'].value={$width};";
    $str .= "top.document.forms[0].elements['ImgHeight'].value={$height};";
    $str .= "top.document.PREVIEWPIC.src='{$path}'; return false;\">{$name}</a>";
    return $str;
}
开发者ID:BackupTheBerlios,项目名称:sitexs,代码行数:16,代码来源:im.php

示例4: template

 function template($name, &$ref)
 {
     $file = admin::getDocumentRoot() . "/adm/templates/" . trim($name) . ".php";
     if (file_exists($file)) {
         ob_start();
         include $file;
         $template = ob_get_contents();
         ob_end_clean();
     } else {
         $template = $admin_config["show_warnings"] ? addslashes(page::showWarnings("<b>" . trim($name) . ".php</b> - Template is missing!")) : "";
     }
     return $template;
 }
开发者ID:BackupTheBerlios,项目名称:sitexs,代码行数:13,代码来源:adm.class.php


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