本文整理汇总了PHP中controller::setAction方法的典型用法代码示例。如果您正苦于以下问题:PHP controller::setAction方法的具体用法?PHP controller::setAction怎么用?PHP controller::setAction使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类controller
的用法示例。
在下文中一共展示了controller::setAction方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: 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();