當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Flash::update方法代碼示例

本文整理匯總了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();
開發者ID:jmhobbs,項目名稱:NodeRegator,代碼行數:30,代碼來源:index.php

示例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 {
開發者ID:hongweipeng,項目名稱:screen,代碼行數:31,代碼來源:manage.php


注:本文中的Flash::update方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。