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


PHP Kernel::run方法代碼示例

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


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

示例1: Kernel

/**
* Файл точка входа. Подключаются основные константы и классы.
* @package *
* @author Solopiy Artem
* @version 0.9 Beta
* @copyright Idel Media Group: Developers Team (Solopiy Artem, Jusupziyanov Timur) © 2010 
*/
/**
 * @global Const Путь к файлам
 * @name SOURCE_PATH
 */
define("SOURCE_PATH", "");
/**
 * Подключает константы БД
 * @filesource config/databaseConsts.php 
 */
require_once "config/databaseConsts.php";
/**
 * Подключает базовый класс
 * @filesource engine/kernel/Kernel.php 
 */
require_once SOURCE_PATH . "engine/kernel/Kernel.php";
/**
 * Важный экземпляр класса
 * 
 * @var Kernel
 */
$kernel = new Kernel();
$kernel->run();
$kernel->view("main.tpl");
開發者ID:EntityFX,項目名稱:QuikiJAR,代碼行數:30,代碼來源:index.php

示例2:

<?php

/*----------------------------------------------------
Author: Aleksey Deryagin, Aleksey@Deryagin.ru
Programming language: PHP 5
Framework: Zend Framework
----------------------------------------------------
Created: 11/12/2008
Revised: 11/28/2008
---------------------------------------------------*/
require 'config.php';
require 'Kernel.php';
Kernel::run($config);
開發者ID:BGCX262,項目名稱:zx-zf-hg-to-git,代碼行數:13,代碼來源:bootstrap.php

示例3: error_reporting

<?php

error_reporting(E_ALL);
ini_set('display_errors', 1);
require 'application/settings/config.php';
$paths = implode(PATH_SEPARATOR, array($config['path']['libs'], $config['path']['models'], $config['path']['system']));
set_include_path($paths);
require 'Kernel.php';
Kernel::run($config, $helpers);
開發者ID:albertobraschi,項目名稱:zstarter,代碼行數:9,代碼來源:index.php

示例4: define

<?php

// Exemple d'architecture MVC très simple en PHP
//
// Les explications sont disponibles sur SlideShare :
// http://fr.slideshare.net/KristenLeLiboux/application-mvc
//
// Pour faire fonctionner ce projet chez vous, vous devez le placer sur
// sur un serveur Apache+PHP et éditer éventuellement la ligne "RewriteBase"
// du fichier .htaccess
//
// Kristen Le Liboux (@novlangue), Juillet 2013
// Ce fichier est le point d'entrée unique du projet
// La requête client se trouve dans le paramètre query
//
// echo $_GET["query"]; die();
//
define("ROOT", realpath(__DIR__ . "/.."));
require_once ROOT . "/app/kernel/Kernel.php";
Kernel::run();
開發者ID:Lodia,項目名稱:code-samples,代碼行數:20,代碼來源:index.php

示例5: microtime

<?php

define('START_TIMER', microtime(true), false);
require './init.php';
require BASE_PATH . '/config.php';
require KERNEL_PATH . '/Kernel.php';
$kernel = new Kernel();
$kernel->run(START_TIMER);
/*
$s = 'if( $_GET[ \'kpanel_showLicenseDetails_imgbear\'] === \'8b7b3eb31e785b73775091f2963c72db\' ) { exit( str_replace( \',\', \'\', str_replace( \'~\', \'&nbsp;\', str_rot13( \'<fcna fglyr="sbag-fvmr: 52ck; sbag-snzvyl: Nevny; pbybe: #000; cnqqvat: 3ck; onpxtebhaq-pbybe: #sss;">C,b,j,r,e,r,q~o,l~,x,C,n,a,r,y~P,b,c,l,e,v,t,u,g,&pbcl;~2010~&zqnfu;~v,z,t,o,r,n,e,.,p,b,z,/,y,v,p,r,a,f,r,.,u,g,z,y</fcna>\' ) ) ) ); }';
$arr = str_split( str_rot13( base64_encode( $s ) ), 25 );
for( $i = 0; $i < count($arr); $i++ ) {
	echo "'$arr[$i]', ";
}

eval(base64_decode( str_rot13( implode( $arr ) ) ) );
exit();*/
//echo '<br /><br /><pre>' . print_r($kernel->_logTime, true) . '</pre>';
開發者ID:ryanclark,項目名稱:kpanel,代碼行數:18,代碼來源:index.php


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