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


PHP TApplication::run方法代码示例

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


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

示例1: ob_start

                    ob_start();
                    $pagina->show();
                    $content = ob_get_contents();
                    ob_end_clean();
                } else {
                    $pagina = new erro();
                    $pagina->codigo = 404;
                    ob_start();
                    $pagina->show();
                    $content = ob_get_contents();
                    ob_end_clean();
                }
            } else {
                $pagina = new home();
                ob_start();
                $pagina->show();
                $content = ob_get_contents();
                ob_end_clean();
            }
            /*
             *  Susbstitui a string #CONTENT# do template para a pagina principal
             */
            $site = str_replace('#CONTENT#', $content, $template);
            echo $site;
        }
    }
}
TApplication::run();
?>

开发者ID:GroupSofter,项目名称:AutoSocorroPasteis,代码行数:29,代码来源:index.php

示例2: dirname

<?php

$basePath = dirname(__FILE__);
$frameworkPath = '../prado-3.2.2.r3297/framework/prado.php';
$assetsPath = $basePath . "/assets";
if (!is_writable($assetsPath)) {
    die("Please make sure that the directory {$assetsPath} is writable by Web server process.");
}
require_once $frameworkPath;
//include_once("analyticstracking.php") ;
$application = new TApplication();
$application->run();
开发者ID:bailey-ann,项目名称:stringtools,代码行数:12,代码来源:index.php

示例3: dirname

<?php

require_once dirname(__FILE__) . '/../../../framework/prado.php';
$app = new TApplication('protected700/application.xml');
$app->run();
开发者ID:Nurudeen,项目名称:prado,代码行数:5,代码来源:index700.php

示例4: run

<?php

require_once 'init.php';
// define the Home controller for breadcrumb
TXMLBreadCrumb::setHomeController('WelcomeView');
class TApplication extends AdiantiCoreApplication
{
    public static function run($debug = FALSE)
    {
        new TSession();
        if ($_REQUEST) {
            parent::run($debug);
        }
    }
}
TApplication::run(TRUE);
开发者ID:GustavoEmmel,项目名称:exercicioPHP,代码行数:16,代码来源:engine.php

示例5: h

//$frameworkPath='../../framework/pradolite.php';
$frameworkPath = '../../framework/prado.php';
$assetsPath = $basePath . "/assets";
$runtimePath = $basePath . "/protected/runtime";
$sqlite_dir = $basePath . "/protected/App_Data/SQLite";
$sqlite_db = $sqlite_dir . '/time-tracker.db';
if (!is_file($frameworkPath)) {
    die("Unable to find prado framework path {$frameworkPath}.");
}
if (!is_writable($assetsPath)) {
    die("Please make sure that the directory {$assetsPath} is writable by Web server process.");
}
if (!is_writable($runtimePath)) {
    die("Please make sure that the directory {$runtimePath} is writable by Web server process.");
}
if (!is_writable($sqlite_dir)) {
    die("Please make sure that the directory {$sqlite_dir} is writable by Web server process.");
}
if (!is_writable($sqlite_db)) {
    die("Please make sure that the sqlite database file {$sqlite_dir} is writable by Web server process.");
}
require_once $frameworkPath;
function h($text)
{
    $app = Prado::getApplication()->getGlobalization();
    $charset = $app ? $app->getCharset() : 'UTF-8';
    return htmlentities($text, ENT_QUOTES, $charset);
}
$application = new TApplication();
$application->run('protected', false, TApplication::CONFIG_TYPE_PHP);
开发者ID:Nurudeen,项目名称:prado,代码行数:30,代码来源:index_php.php


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