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


PHP controller::run方法代码示例

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


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

示例1: siteAutoload

/**
 * Created by PhpStorm.
 * User: ys
 * Date: 16.11.2014
 * Time: 0:07
 */
//var_dump($_SERVER);
//var_dump($_GET);
require_once 'config.php';
function siteAutoload($class)
{
    $n = strrpos($class, '_');
    if ($n === false) {
        $path = '';
    } else {
        $path = str_replace('_', '/', substr($class, 0, $n + 1));
    }
    include $path . $class . '.php';
}
function libAutoload($class)
{
    include '../lib/' . $class . '.php';
}
spl_autoload_register('siteAutoload');
spl_autoload_register('libAutoload');
try {
    $controller = new controller();
    $controller->run();
} catch (Exception $e) {
    error::showError($e);
}
开发者ID:stanhelen87,项目名称:OOOO,代码行数:31,代码来源:index.php

示例2: controller_news

function controller_news()
{
    return controller::run();
}
开发者ID:nongrata-volgmed,项目名称:imcms4,代码行数:4,代码来源:controller-news.php

示例3: postHandler

<?php

// Errors to browser
error_reporting(E_ALL);
ini_set('display_errors', 'on');
// Load libraries
$config = parse_ini_file('config.ini');
require_once 'lib/Model/composers.php';
require_once 'lib/Model/songs.php';
require_once 'lib/Model/musicalForms.php';
require_once 'lib/Controller/controller.php';
require_once 'lib/Controller/postHandler.php';
$postHandler = new postHandler();
$postHandler->run();
$Controller = new controller();
$action = "";
// If there's an action tell the controller
if (isset($_GET["action"])) {
    $action = $_GET["action"];
}
$Controller->setAction($action);
echo $Controller->run();
开发者ID:Nosferius,项目名称:RepMan,代码行数:22,代码来源:index.php


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