本文整理汇总了PHP中Flash::update方法的典型用法代码示例。如果您正苦于以下问题:PHP Flash::update方法的具体用法?PHP Flash::update怎么用?PHP Flash::update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Flash
的用法示例。
在下文中一共展示了Flash::update方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Exception
}
} else {
if (file_exists(SYSTEM_ROOT . '/helper/' . $raw_file)) {
require_once SYSTEM_ROOT . '/helper/' . $raw_file;
@class_alias("{$name}_Helper", "{$name}");
} else {
if (file_exists(SYSTEM_ROOT . '/library/' . $raw_file)) {
require_once SYSTEM_ROOT . '/library/' . $raw_file;
if (!$force_core) {
@class_alias("{$name}_Core", "{$name}");
}
} else {
throw new Exception("Class Not Found: {$name}");
}
}
}
}
// __autoload()
// Tricky bugger. If we have documents stored in session, and this is pre-autoloader we can't find any classes.
session_start();
if (false === strpos($_SERVER['REQUEST_URI'], Config::get('xoket.location'))) {
die('Configuration Error - xoket.location is invalid.');
}
$uri = substr($_SERVER['REQUEST_URI'], strlen(Config::get('xoket.location')));
$uri = URI::route($uri);
Request::load($uri);
$context = Context::instance();
$context->headers();
echo $context->execute();
Flash::update();
示例2: intval
Common::jumpUrl("flash/manage.php");
}
} else {
if (isset($_GET['edit'])) {
$id = intval($_GET['id']);
if ($id < 1) {
Common::jumpUrl("flash/manage.php");
}
if (isset($_POST['name'])) {
$name = strip_tags($_POST['name']);
$title = strip_tags($_POST['title']);
$url = strip_tags($_POST['url']);
$status = intval($_POST['status']);
$status > 1 && ($status = 0);
$sort = intval($_POST['sort']);
Flash::update($id, array('name' => $name, 'title' => $title, 'url' => $url, 'status' => $status, 'sort' => $sort));
Common::jumpUrl("flash/manage.php");
} else {
$item = Flash::getById($id);
Template::assign('item', $item);
Template::display('flash/edit.tpl');
}
} else {
if (isset($_GET['del'])) {
$id = intval($_GET['id']);
if ($id < 1) {
Common::jumpUrl("flash/manage.php");
}
Flash::del($id);
Common::jumpUrl("flash/manage.php");
} else {