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


PHP base::sysPath方法代码示例

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


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

示例1: php

 public function php()
 {
     $info = array('php_uname()' => php_uname('a'), 'phpversion()' => phpversion(), 'php_sapi_name()' => php_sapi_name(), 'PHP_OS' => PHP_OS, 'DIRECTORY_SEPARATOR' => DIRECTORY_SEPARATOR, 'PATH_SEPARATOR' => PATH_SEPARATOR, 'PHP_SHLIB_SUFFIX' => PHP_SHLIB_SUFFIX, 'sys_get_temp_dir()' => sys_get_temp_dir(), 'Platform' => LEPTON_PLATFORM_ID);
     $comp = array('COMPAT_GETOPT_LONGOPTS' => PHP_VERSION >= "5.3" ? 'Supported' : 'Emulated (PHP >= 5.3)', 'COMPAT_SOCKET_BACKLOG' => PHP_VERSION >= "5.3.3" ? 'Supported' : 'Missing (PHP >= 5.3.3)', 'COMPAT_HOST_VALIDATION' => PHP_VERSION >= "5.2.13" ? 'Supported' : 'Emulated (PHP >= 5.2.13)', 'COMPAT_NAMESPACES' => PHP_VERSION >= "5.3.0" ? 'Supported' : 'Missing (PHP >= 5.3.0)', 'COMPAT_INPUT_BROKEN' => PHP_VERSION >= "5" && PHP_VERSION < "5.3.1" ? 'php://input possibly broken (PHP >= 5, PHP < 5.3.1)' : 'Functional', 'COMPAT_CALLSTATIC' => PHP_VERSION >= "5.3.0" ? 'Supported' : 'Missing (PHP >= 5.3.0)', 'COMPAT_CRYPT_BLOWFISH' => PHP_VERSION >= "5.3.0" ? 'Supported' : 'Missing (PHP >= 5.3.0)', 'COMPAT_PHP_FNMATCH' => PHP_OS == "Linux" || PHP_OS == "Windows" && PHP_VERSION >= "5.3" ? 'Native' : 'Emulated (WIN + PHP >= 5.3.0)');
     $opts = array('base::basePath()' => base::basePath(), 'base::appPath()' => base::appPath(), 'base::sysPath()' => base::sysPath(), 'TMP_PATH' => TMP_PATH);
     Console::writeLn(__astr("\\b{Lepton Overview:}"));
     foreach ($opts as $key => $val) {
         Console::writeLn("  %-25s : %s", $key, $val);
     }
     Console::writeLn();
     Console::writeLn(__astr("\\b{PHP Overview:}"));
     foreach ($info as $key => $val) {
         Console::writeLn("  %-25s : %s", $key, $val);
     }
     Console::writeLn();
     Console::writeLn(__astr("\\b{Compatibility layer overview:}"));
     foreach ($comp as $key => $val) {
         Console::writeLn("  %-25s : %s", $key, $val);
     }
     Console::writeLn();
 }
开发者ID:noccy80,项目名称:lepton-ng,代码行数:21,代码来源:info.php

示例2: getDebugInformation

 static function getDebugInformation()
 {
     if (self::isSecure()) {
         $ssl = 'Yes (' . $_SERVER['SSL_TLS_SNI'] . ')';
     } else {
         $ssl = 'No';
     }
     return join("\n", array("Request time: " . date(DATE_RFC822, $_SERVER['REQUEST_TIME']), "Base path: " . base::basePath(), "App path: " . base::appPath(), "Sys path: " . base::sysPath(), "User-agent: " . $_SERVER['HTTP_USER_AGENT'], "Request URI: " . $_SERVER['REQUEST_URI'], "Request method: " . $_SERVER['REQUEST_METHOD'], "Authenticated user: " . (user::isAuthenticated() ? user::getActiveUser()->uuid : 'n/a'), "Remote IP: " . $_SERVER['REMOTE_ADDR'] . " (" . gethostbyaddr($_SERVER['REMOTE_ADDR']) . ")", "Hostname: " . $_SERVER['HTTP_HOST'], "Secure: " . $ssl, "Referrer: " . (isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : 'null'), sprintf("Running as: %s (uid=%d, gid=%d) with pid %d", get_current_user(), getmyuid(), getmygid(), getmypid()), sprintf("Server: %s", $_SERVER['SERVER_SOFTWARE']) . " (" . php_sapi_name() . ")", sprintf("Memory allocated: %0.3f KB (Total used: %0.3f KB)", memory_get_usage() / 1024 / 1024, memory_get_usage(true) / 1024 / 1024), "Platform: " . LEPTON_PLATFORM_ID, sprintf("Runtime: PHP v%d.%d.%d (%s)", PHP_MAJOR_VERSION, PHP_MINOR_VERSION, PHP_RELEASE_VERSION, PHP_OS)));
 }
开发者ID:noccy80,项目名称:lepton-ng,代码行数:9,代码来源:request.php

示例3: _mangleModulePath

 /**
  *
  */
 static function _mangleModulePath($module)
 {
     // Console::debugEx(LOG_LOG,__CLASS__,"Mangling module %s", $module);
     if (preg_match('/^app\\./', $module)) {
         $path = base::appPath() . '/' . str_replace('.', '/', str_replace('app.', '', $module)) . '.php';
     } else {
         $path = base::sysPath() . '/' . str_replace('.', '/', $module) . '.php';
     }
     // Console::debugEx(LOG_LOG,__CLASS__,"  -> %s", $path);
     return $path;
 }
开发者ID:noccy80,项目名称:lepton-ng,代码行数:14,代码来源:base.php

示例4: __set

        return null;
    }
    function __set($key, $value)
    {
        switch ($key) {
            case 'red':
            case 'r':
                $this->red = $this->bounds($value);
                break;
            case 'green':
            case 'g':
                $this->green = $this->bounds($value);
                break;
            case 'blue':
            case 'b':
                $this->blue = $this->bounds($value);
                break;
            case 'alpha':
            case 'a':
                $this->alpha = 255;
        }
    }
}
function pantone($pms)
{
    return new PantoneColor($pms);
}
$fn = base::sysPath() . 'lepton/graphics/colorspaces/pantone.sd';
if (file_exists($fn)) {
    globals::set('pantonescale', unserialize(file_get_contents($fn)));
}
开发者ID:noccy80,项目名称:lepton-ng,代码行数:31,代码来源:pantone.php


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