当前位置: 首页>>代码示例>>PHP>>正文


PHP Stream::update方法代码示例

本文整理汇总了PHP中Stream::update方法的典型用法代码示例。如果您正苦于以下问题:PHP Stream::update方法的具体用法?PHP Stream::update怎么用?PHP Stream::update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Stream的用法示例。


在下文中一共展示了Stream::update方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

<?php

$current_page = "streams";
require_once "header.php";
require_once "objects/stream.php";
$message = '';
if ($_POST) {
    $result = Stream::update($_POST);
    if ($result) {
        $message = '<div class="alert alert-success" role="alert">Stream updated!</div>';
    } else {
        $message = '<div class="alert alert-danger" role="alert">Problem updating stream...</div>';
    }
}
$games = Stream::games();
$leagues = Stream::leagues();
$champions = Stream::champions();
$selected_game = $_GET['game'] ? $_GET['game'] : '';
$selected_champion = $_GET['champion'] ? $_GET['champion'] : '';
$selected_league = $_GET['league'] ? $_GET['league'] : '';
$game_html = '';
foreach ($games as $game) {
    $checked = '';
    if ($selected_game == $game->name) {
        $checked = ' selected="selected"';
    }
    $game_html .= <<<HTML
\t\t\t<option value="{$game->name}"{$checked}>{$game->name}</option>
HTML;
}
$league_html = '';
开发者ID:patterson-joseph,项目名称:cs313-php,代码行数:31,代码来源:update_stream.php

示例2: getStreams

		<button type="reset">RESET</button>
		<button type="submit"
				name="stage"
				value="2">submit</button>
	</fieldset>
</form>
</div>';
                                break;
                            case "2":
                                //	$stream = new Stream( "00000", $_POST[ "name" ], $_POST[ "description" ], $_POST[ "startYear" ], $_POST[ "stopYear" ] );
                                $stream->setName($_POST["name"]);
                                $stream->setDescription($_POST["description"]);
                                $stream->setStartYear($_POST["startYear"]);
                                $stream->setStopYear($_POST["stopYear"]);
                                if ($stream->validate()) {
                                    if ($stream->update()) {
                                        $pageBody .= '
<div class="dialog">
<p>stream successfully saved</p>
</div>';
                                    }
                                }
                                break;
                        }
                    } else {
                        // You need to specify a target
                    }
                    break;
                case "list":
                    $streams = getStreams();
                    if (count($streams) > 0) {
开发者ID:eebrah,项目名称:schoolsys,代码行数:31,代码来源:index.php


注:本文中的Stream::update方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。