本文整理汇总了PHP中Problem::set_problem方法的典型用法代码示例。如果您正苦于以下问题:PHP Problem::set_problem方法的具体用法?PHP Problem::set_problem怎么用?PHP Problem::set_problem使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Problem
的用法示例。
在下文中一共展示了Problem::set_problem方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Problem
<?php
include_once 'functions/problems.php';
$pid = convert_str($_GET['pid']);
if ($pid == "") {
$pid = "0";
}
$show_problem = new Problem();
$show_problem->set_problem($pid);
if ($show_problem->is_valid() && $show_problem->get_val("hide") == 0) {
$pagetitle = "Statistics of Problem " . $pid;
} else {
$pagetitle = "Problem Unavailable";
}
include_once "header.php";
include_once "functions/sidebars.php";
?>
<div class="span8">
<h3>Leaderboard of <a href="problem_show.php?pid=<?php
echo $pid;
?>
">Problem <?php
echo $pid;
?>
</a></h3>
<table class="table table-hover table-striped" id="pleader">
<thead>
<tr>
<th width="10%">Rank</th>
<th width="10%">ACs</th>
<th width="10%">Runid</th>
示例2: Problem
</style>
</head>
<body>
<?php
include_once 'functions/problems.php';
include_once 'functions/users.php';
include_once 'functions/contests.php';
$cid = convert_str($_GET['cid']);
if (!contest_exist($cid) || $current_user->is_root() == false && !$current_user->match(contest_get_val($cid, "owner"))) {
echo "<h1>You are not allowed to view this page.</h1>";
die;
}
$show_problem = new Problem();
foreach ((array) contest_get_problem_summaries($cid) as $cp) {
$show_problem->set_problem($cp["pid"]);
$html = "<center><h1>" . $cp["lable"] . ". " . $show_problem->get_val("title") . "</h1></center>";
if ($show_problem->get_val("description") != "") {
$html .= latex_content($show_problem->get_val("description"));
}
if ($show_problem->get_val("input") != "") {
$html .= "<h2 style='margin-top:10px'>Input</h2>" . latex_content($show_problem->get_val("input"));
}
if ($show_problem->get_val("output") != "") {
$html .= "<h2 style='margin-top:10px'>Output</h2>" . latex_content($show_problem->get_val("output"));
}
if ($show_problem->get_val("sample_in") != "") {
$html .= "<h2 style='margin-top:10px'>Sample Input</h2>";
if (stristr($show_problem->get_val("sample_in"), '<br') == null && stristr($show_problem->get_val("sample_in"), '<pre') == null && stristr($show_problem->get_val("sample_in"), '<p>') == null) {
$html .= "<pre>" . $show_problem->get_val("sample_in") . "</pre>";
} else {