本文整理匯總了PHP中Index::run方法的典型用法代碼示例。如果您正苦於以下問題:PHP Index::run方法的具體用法?PHP Index::run怎麽用?PHP Index::run使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Index
的用法示例。
在下文中一共展示了Index::run方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: checkPage
private function checkPage($page)
{
if (!preg_match('/^[a-z0-9-]+$/i', $page)) {
throw new NotFoundException('Unsafe page "' . $page . '" requested');
}
if (!$this->hasScript($page) && !$this->hasTemplate($page)) {
throw new NotFoundException('Page "' . $page . '" not found');
}
return $page;
}
private function hasScript($page)
{
return file_exists($this->getScript($page));
}
private function hasTemplate($page)
{
return file_exists($this->getTemplate($page));
}
private function getScript($page)
{
return self::PAGE_DIR . $page . '-script.php';
}
private function getTemplate($page)
{
return self::PAGE_DIR . $page . '-view.php';
}
}
$index = new Index();
$index->init();
$index->run();
示例2: header
header('HTTP/1.1 403 Forbidden');
} elseif ($type == 'error_404') {
header('HTTP/1.1 404 Not Found');
} else {
header('HTTP/1.1 200 Ok');
}
header('Vary: User-Agent', false);
header('Content-Type: ' . $content . '; charset=' . Config::get('characterSet'));
// Send the cache headers
if ($expire !== null && (Config::get('cacheMode') == 'both' || Config::get('cacheMode') == 'browser')) {
header('Cache-Control: public, max-age=' . ($expire - time()));
header('Expires: ' . gmdate('D, d M Y H:i:s', $expire) . ' GMT');
header('Last-Modified: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
header('Pragma: public');
} else {
header('Cache-Control: no-cache');
header('Cache-Control: pre-check=0, post-check=0', false);
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
header('Expires: Fri, 06 Jun 1975 15:10:00 GMT');
header('Pragma: no-cache');
}
echo $strBuffer;
exit;
}
}
/**
* Instantiate the controller
*/
$objIndex = new Index();
$objIndex->run();
示例3: run
ob_start();
// Este es un cambio
//require_once 'app/controller/UsersController.php';
require_once 'app/view/IndexView.php';
/**
* Description of index
*
* @author Daniel Fernandez
*/
class Index
{
/*
* Este es el metodo que ejecuta la aplicación
*/
public function run($page)
{
switch ($page) {
case 'index':
$users = new UsersController();
$users->runIndex();
break;
default:
$home_view = new HomeView();
$home_view->runIndex();
break;
}
}
}
$index = new Index();
$index->run($_GET['view']);
ob_end_flush();
示例4: isset
//默認配置
/** @constant 要被處理的源代碼路徑 */
define("CODE_PATH", "./src/obj/");
/** @constant tangram 代碼路徑 */
define("TANGRAM_PATH", "./src/");
/** @constant Tangram-base 所在目錄 */
define("TANGRAM_BASE_DIR", "tangram/");
/** @constant Tangram命名空間 */
define("TANGRAM_NAMESPACE", "baidu");
/** @constant 處理的文件類型 */
define("FILETYPES", ".html,.htm,.js,.tpl");
//處理傳進來的參數
$param = isset($argv) ? $argv : $_REQUEST;
$paramsHandler = new HandleParams($param);
$config = $paramsHandler->run();
//如果用戶是通過瀏覽器訪問,則顯示web界麵。否則為命令行模式
if ($config['type'] == "web") {
$uiHandler = new Ui($config);
$uiHandler->run();
}
if (!empty($config["params"]) || $config['type'] == "commandline") {
//解析用戶的源代碼,提取其中調用Tangram的代碼
$parseHandler = new Parse($config);
$parseRes = $parseHandler->run();
//分析用戶調用的tangram源代碼,得到用戶需要的tangram模塊
$indexHandler = new Index($parseRes, $config);
$indexRes = $indexHandler->run();
//將用戶用到的tangram模塊打包返回給用戶
$packHandler = new Pack($indexRes, $config);
$packHandler->run();
}
示例5: Index
<?php
require_once '../config.php';
$page = new Index();
$page->run();