當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。