當前位置: 首頁>>代碼示例>>PHP>>正文


PHP OC_Util::secureRNG_available方法代碼示例

本文整理匯總了PHP中OC_Util::secureRNG_available方法的典型用法代碼示例。如果您正苦於以下問題:PHP OC_Util::secureRNG_available方法的具體用法?PHP OC_Util::secureRNG_available怎麽用?PHP OC_Util::secureRNG_available使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在OC_Util的用法示例。


在下文中一共展示了OC_Util::secureRNG_available方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array_merge

if (file_exists($autosetup_file)) {
    OC_Log::write('core', 'Autoconfig file found, setting up owncloud...', OC_Log::INFO);
    include $autosetup_file;
    $_POST['install'] = 'true';
    $_POST = array_merge($_POST, $AUTOCONFIG);
    unlink($autosetup_file);
}
OC_Util::addScript('setup');
$hasSQLite = (is_callable('sqlite_open') or class_exists('SQLite3'));
$hasMySQL = is_callable('mysql_connect');
$hasPostgreSQL = is_callable('pg_connect');
$hasOracle = is_callable('oci_connect');
$datadir = OC_Config::getValue('datadirectory', OC::$SERVERROOT . '/data');
// Protect data directory here, so we can test if the protection is working
OC_Setup::protectDataDirectory();
$opts = array('hasSQLite' => $hasSQLite, 'hasMySQL' => $hasMySQL, 'hasPostgreSQL' => $hasPostgreSQL, 'hasOracle' => $hasOracle, 'directory' => $datadir, 'secureRNG' => OC_Util::secureRNG_available(), 'htaccessWorking' => OC_Util::ishtaccessworking(), 'errors' => array());
if (isset($_POST['install']) and $_POST['install'] == 'true') {
    // We have to launch the installation process :
    $e = OC_Setup::install($_POST);
    $errors = array('errors' => $e);
    if (count($e) > 0) {
        //OC_Template::printGuestPage("", "error", array("errors" => $errors));
        $options = array_merge($_POST, $opts, $errors);
        OC_Template::printGuestPage("", "installation", $options);
    } else {
        header("Location: " . OC::$WEBROOT . '/');
        exit;
    }
} else {
    OC_Template::printGuestPage("", "installation", $opts);
}
開發者ID:ryanshoover,項目名稱:core,代碼行數:31,代碼來源:setup.php


注:本文中的OC_Util::secureRNG_available方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。