本文整理汇总了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);
}
示例2: controller_news
function controller_news()
{
return controller::run();
}
示例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();