当前位置: 首页>>代码示例>>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;未经允许,请勿转载。