本文整理匯總了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 {