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


PHP dibi::loadFile方法代碼示例

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


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

示例1:

<!DOCTYPE html><link rel="stylesheet" href="data/style.css">

<h1>Importing SQL Dump from File | dibi</h1>

<?php 
require __DIR__ . '/../src/loader.php';
dibi::connect(['driver' => 'sqlite3', 'database' => 'data/sample.s3db']);
$count = dibi::loadFile('compress.zlib://data/sample.dump.sql.gz');
echo 'Number of SQL commands:', $count;
開發者ID:janlanger,項目名稱:dibi,代碼行數:9,代碼來源:importing-dump-from-file.php

示例2:

<?php

namespace ActiveMapperTests;

require_once __DIR__ . "/../libs/Nette/loader.php";
\Nette\Debug::enable(\Nette\Debug::DEVELOPMENT);
\Nette\Environment::setVariable("tempDir", __DIR__ . "/_temp");
$loader = new \Nette\Loaders\RobotLoader();
$loader->addDirectory(__DIR__ . "/../libs");
$loader->addDirectory(__DIR__ . "/../ActiveMapper");
$loader->addDirectory(__DIR__ . "/../examples/Models");
$loader->register();
\dibi::connect(array('driver' => "sqlite3", 'database' => ":memory:", 'formatDateTime' => "'Y-m-d H:i:s'", 'lazy' => TRUE, 'profiler' => TRUE));
\dibi::loadFile(__DIR__ . "/db.structure.sql");
\dibi::loadFile(__DIR__ . "/db.data.sql");
開發者ID:nella,項目名稱:ActiveMapper,代碼行數:15,代碼來源:bootstrap.php

示例3: define

<?php

// The point of this file is to be ran 1 time to set up all the tables necessary for lolscores to run.
// This script uses .sql files that have to be UPDATED after every structural change to the database.
define('WEBSECURITY', 'ok');
require '../__init.php';
if (isset($_GET["hash"]) && defined('SAFETY_HASH') && $_GET["hash"] == SAFETY_HASH) {
    dibi::loadFile('../sql/lolscores.sql');
    print "DB install is done.";
} else {
    print "Stop hacking pls.";
}
開發者ID:roesel,項目名稱:lolcomp,代碼行數:12,代碼來源:install_db.php


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