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


PHP dir::functions方法代码示例

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


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

示例1: create

 public function create($array)
 {
     $id = $this->id;
     $SSH = rp::get('SSH');
     $host = $SSH['ip'];
     $user = $SSH['user'];
     $pass = $SSH['password'];
     unset($SSH);
     $sftp = new sftp($host, $user, $pass);
     $sftp->makedir((string) $id);
     $sftp->chdir((string) $id);
     $control = games::replaceControl($this->sql->get('gameID'), $array);
     $this->createControl($control);
     $dir = dir::backup("control/{$id}/");
     $sftp->put('control.sh', $dir . 'control.sh', NET_SFTP_LOCAL_FILE);
     $sftp->chmod(0777, 'control.sh');
     $sftp->makedir("functions");
     $sftp->chdir("functions");
     $functions = ['fn_install', 'fn_install_complete', 'fn_install_config'];
     foreach ($functions as $file) {
         $path = dir::functions('control/' . $file);
         $sftp->put($file, $path, NET_SFTP_LOCAL_FILE);
         $sftp->chmod(0777, $file);
     }
     return true;
 }
开发者ID:kyroskoh,项目名称:rokket,代码行数:26,代码来源:server.php

示例2: dyn

include dir::classes('autoload.php');
autoload::register();
autoload::addDir(dir::classes('utils'));
new dyn();
if (dyn::get('setup') == true) {
    header('Location: install/');
    exit;
}
if (isset($DYN['backend'])) {
    dyn::add('backend', $DYN['backend']);
} else {
    dyn::add('backend', true);
}
unset($DYN);
include dir::functions('html_stuff.php');
include dir::functions('url_stuff.php');
lang::setDefault();
lang::setLang(dyn::get('lang'));
$DB = dyn::get('DB');
sql::connect($DB['host'], $DB['user'], $DB['password'], $DB['database']);
ob_start();
date_default_timezone_set(dyn::get('timezone', 'Europe/Berlin'));
new userLogin();
dyn::add('user', new user(userLogin::getUser()));
cache::setCache(dyn::get('cache'));
addonConfig::loadAllConfig();
addonConfig::includeAllLangFiles();
addonConfig::includeAllLibs();
if (dyn::get('backend')) {
    include dir::backend('backend.php');
} else {
开发者ID:pasterntt,项目名称:dynao-CMS,代码行数:31,代码来源:index.php

示例3: set_include_path

set_include_path(get_include_path() . PATH_SEPARATOR . 'lib/vendor/phpseclib');
include_once 'Net/SSH2.php';
include_once 'Net/SFTP.php';
define('NET_SSH2_LOGGING', NET_SSH2_LOG_COMPLEX);
include 'lib/classes/dir.php';
new dir();
include dir::classes('autoload.php');
autoload::register();
autoload::addDir(dir::classes('helper'));
new rp();
if (rp::get('setup') == true) {
    header('Location: install/');
    exit;
}
include dir::functions('html.php');
include dir::functions('convert.php');
lang::setDefault();
lang::setLang(rp::get('lang'));
$DB = rp::get('DB');
sql::connect($DB['host'], $DB['user'], $DB['password'], $DB['database']);
unset($DB);
date_default_timezone_set(rp::get('timezone', 'Europe/Berlin'));
new userLogin();
rp::add('user', new user(userLogin::getUser()));
cache::setCache(rp::get('cache'));
addonConfig::loadAllConfig();
addonConfig::includeAllLangFiles();
addonConfig::includeAllLibs();
$page = type::super('page', 'string', 'dashboard');
$action = type::super('action', 'string');
$id = type::super('id', 'int');
开发者ID:kyroskoh,项目名称:rokket,代码行数:31,代码来源:index.php


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