本文整理汇总了PHP中get_http_var函数的典型用法代码示例。如果您正苦于以下问题:PHP get_http_var函数的具体用法?PHP get_http_var怎么用?PHP get_http_var使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了get_http_var函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: api_getWrans_search
function api_getWrans_search($s) {
_api_getHansard_search( array(
's' => $s,
'pid' => get_http_var('person'),
'type' => 'wrans',
) );
}
示例2: delete_success
function delete_success()
{
global $PAGE, $this_page;
$this_page = 'alertdeletesucceeded';
$PAGE->page_start();
$PAGE->stripe_start();
?>
<p>Your alert has been unsubscribed.</p>
<p>You will no longer receive this alert though any others you have requested will be unaffected. If you wish to unsubscribe from any more
alerts you will have to do this individually. If you wish to set new alerts then please visit OpenAustralia again.</p>
<p><strong>If you didn't mean to do this, <a href="<?php
echo WEBPATH;
?>
alert/undelete/?t=<?php
echo get_http_var('t');
?>
">resubscribe to this alert</a></strong></p>
<?php
$PAGE->stripe_end();
$PAGE->page_end();
}
示例3: display
public function display()
{
$data = array();
$data['recent_election'] = false;
if ($this->user->loggedin()) {
$data['user_signed_in'] = true;
}
if (get_http_var('add-alert')) {
$data['email'] = get_http_var('email');
$data['postcode'] = get_http_var('postcode');
$result = $this->createAlertForPostCode($data['email'], $data['postcode']);
$data = array_merge($data, $result);
} elseif (get_http_var('update')) {
$result = $this->getNewMP(get_http_var('update'));
$data = array_merge($data, $result);
} elseif (get_http_var('update-alert')) {
$success = $this->replaceAlert(get_http_var('confirmation'));
$data['confirmation_received'] = $success;
} elseif (get_http_var('confirmed')) {
$success = $this->confirmAlert(get_http_var('confirmed'));
$data['confirmation_received'] = $success;
} else {
$data['email'] = $this->user->email() ? $this->user->email() : '';
$data['postcode'] = $this->user->postcode_is_set() ? $this->user->postcode() : '';
if ($this->isEmailSignedUpForPostCode($data['email'], $data['postcode'])) {
$data['already_signed_up'] = True;
$mp = $this->getPersonFromPostcode($data['postcode']);
$data['mp_name'] = $mp->full_name();
}
}
return $data;
}
示例4: __construct
function __construct($pagepath = null)
{
$this->P = person_if_signed_on();
// "pwb_" prefix means passwordbox
$this->action = get_http_var('pwb_action');
$this->pw1 = get_http_var('pw1', null);
$this->pw2 = get_http_var('pw2', null);
$this->err = null;
$this->info = null;
if (is_null($pagepath)) {
// no specific page - use the _current_ one.
$foo = crack_url($_SERVER['REQUEST_URI']);
$this->pagepath = $foo['path'];
} else {
// use the one supplied.
$this->pagepath = $pagepath;
}
if (is_null($this->P)) {
return;
}
if ($this->action == 'set_password') {
if (is_null($this->pw1) || is_null($this->pw2)) {
$this->err = "Please type your new password twice";
} elseif (strlen($this->pw1) < 5 || strlen($this->pw2) < 5) {
$this->err = "Your password must be at least 5 characters long";
} elseif ($this->pw1 != $this->pw2) {
$this->err = "Please type the same password twice";
} else {
// all looks good. do it.
$this->P->password($this->pw1);
db_commit();
$this->info = 'Password changed';
}
}
}
示例5: dispatch
public static function dispatch()
{
$id = get_http_var('id');
$action = get_http_var('action');
$sql = <<<EOT
SELECT m.id,m.journo_id, j.ref, j.prettyname, j.oneliner, m.url, m.submitted, m.reason
FROM missing_articles m LEFT JOIN journo j ON m.journo_id=j.id
WHERE m.id=?;
EOT;
$row = db_getRow($sql, $id);
$w = new MissingArticleWidget($row);
// perform whatever action has been requested
$w->perform($action);
// is request ajax?
$ajax = get_http_var('ajax') ? true : false;
if ($ajax) {
$w->emit_core();
} else {
// not an ajax request, so output a full page
admPageHeader("Missing Article", "MissingArticleWidget::emit_head_js");
print "<h2>Missing article</h2>\n";
$w->emit_full();
admPageFooter();
}
}
示例6: api_getMPsInfo_id
function api_getMPsInfo_id($ids)
{
$fields = preg_split('#\\s*,\\s*#', get_http_var('fields'), -1, PREG_SPLIT_NO_EMPTY);
$ids = preg_split('#\\s*,\\s*#', $ids, -1, PREG_SPLIT_NO_EMPTY);
$safe_ids = array(0);
foreach ($ids as $id) {
if (ctype_digit($id)) {
$safe_ids[] = $id;
}
}
$ids = join(',', $safe_ids);
$db = new ParlDB();
$last_mod = 0;
$q = $db->query("select person_id, data_key, data_value, lastupdate from personinfo\n\t\twhere person_id in (" . $ids . ")");
if ($q->rows()) {
$output = array();
for ($i = 0; $i < $q->rows(); $i++) {
$data_key = $q->field($i, 'data_key');
if (count($fields) && !in_array($data_key, $fields)) {
continue;
}
$pid = $q->field($i, 'person_id');
$output[$pid][$data_key] = $q->field($i, 'data_value');
$time = strtotime($q->field($i, 'lastupdate'));
if ($time > $last_mod) {
$last_mod = $time;
}
}
$q = $db->query("select memberinfo.*, person_id from memberinfo, member\n\t\t\twhere memberinfo.member_id=member.member_id and person_id in (" . $ids . ")\n\t\t\torder by person_id,member_id");
if ($q->rows()) {
$oldmid = 0;
$count = -1;
for ($i = 0; $i < $q->rows(); $i++) {
$data_key = $q->field($i, 'data_key');
if (count($fields) && !in_array($data_key, $fields)) {
continue;
}
$mid = $q->field($i, 'member_id');
$pid = $q->field($i, 'person_id');
if (!isset($output[$pid]['by_member_id'])) {
$output[$pid]['by_member_id'] = array();
}
if ($oldmid != $mid) {
$count++;
$oldmid = $mid;
$output[$pid]['by_member_id'][$count]['member_id'] = $mid;
}
$output[$pid]['by_member_id'][$count][$data_key] = $q->field($i, 'data_value');
$time = strtotime($q->field($i, 'lastupdate'));
if ($time > $last_mod) {
$last_mod = $time;
}
}
}
ksort($output);
api_output($output, $last_mod);
} else {
api_error('Unknown person ID');
}
}
示例7: api_getAlerts_start_date
function api_getAlerts_start_date($start_date)
{
$args = array('start_date' => $start_date, 'end_date' => get_http_var('end_date'));
$alert = new ALERT();
$data = $alert->fetch_between($confirmed = 1, $deleted = 0, $args['start_date'], $args['end_date']);
api_output($data);
}
示例8: view
function view()
{
$url = get_http_var('url', '');
$action = get_http_var('action');
$art = null;
$return_code = null;
$raw_output = '';
$summary = 'FAILED';
$urls_form = new ArticleURLsForm($_GET);
if ($urls_form->is_valid()) {
$url = $urls_form->cleaned_data['url'];
// already got it?
$art_id = article_find($url);
if (is_null($art_id)) {
list($return_code, $raw_output) = scrape_ScrapeURL($url);
$scraped = scrape_ParseOutput($raw_output);
if (sizeof($scraped) > 0) {
$art_id = $scraped[0]['id'];
$summary = 'ARTICLE SCRAPED';
} else {
$summary = 'NOT SCRAPED';
}
} else {
$summary = 'ALREADY IN DATABASE';
}
if (!is_null($art_id)) {
$art = fetch_art($art_id);
}
}
$v = array('urls_form' => $urls_form, 'return_code' => $return_code, 'raw_output' => $raw_output, 'summary' => $summary, 'art' => $art);
template($v);
}
示例9: get_params
function get_params()
{
$p['prettyname'] = trim(get_http_var('prettyname'));
$p['ref'] = trim(strtolower(get_http_var('ref')));
$p['firstname'] = trim(strtolower(get_http_var('firstname')));
$p['lastname'] = trim(strtolower(get_http_var('lastname')));
if ($p['prettyname']) {
$def_ref = strtolower($p['prettyname']);
$def_ref = preg_replace('/[^a-z]+/', '-', $def_ref);
$parts = explode(' ', strtolower($p['prettyname']));
if ($parts) {
$def_lastname = array_pop($parts);
$def_firstname = array_shift($parts);
}
if (!$p['ref']) {
$p['ref'] = $def_ref;
}
if (!$p['lastname']) {
$p['lastname'] = $def_lastname;
}
if (!$p['firstname']) {
$p['firstname'] = $def_firstname;
}
}
return $p;
}
示例10: update_url
function update_url()
{
global $db;
global $scriptpath;
$out = '';
$sysretval = 0;
$personid = get_http_var('editperson');
$q = $db->query("DELETE FROM personinfo WHERE data_key = 'mp_website' AND personinfo.person_id = :person_id", array(':person_id' => $personid));
if ($q->success()) {
$q = $db->query("INSERT INTO personinfo (data_key, person_id, data_value) VALUES ('mp_website', :person_id, :url)", array(':person_id' => $personid, ':url' => get_http_var('url')));
}
if ($q->success()) {
exec($scriptpath . "/db2xml.pl --update_person --personid=" . escapeshellarg($personid) . " --debug", $exec_output);
$out = '<p id="warning">';
foreach ($exec_output as $message) {
$out .= $message . "<br>";
}
$out .= '</p>';
# ../../../scripts/db2xml.pl --update_person --personid=10001
}
if ($sysretval) {
$out .= '<p id="warning">Update Successful</p>';
}
return $out;
}
示例11: _api_getHansard_search
function _api_getHansard_search($array)
{
$search = isset($array['s']) ? trim($array['s']) : '';
$pid = trim($array['pid']);
$type = isset($array['type']) ? $array['type'] : '';
$search = filter_user_input($search, 'strict');
if ($pid) {
$search .= ($search ? ' ' : '') . 'speaker:' . $pid;
}
if ($type) {
$search .= " section:" . $type;
}
$o = get_http_var('order');
if ($o == 'p') {
$data = search_by_usage($search);
$out = array();
foreach ($data['speakers'] as $pid => $s) {
$out[$pid] = array('house' => $s['house'], 'name' => $s['name'], 'party' => $s['party'], 'count' => $s['count'], 'mindate' => substr($s['pmindate'], 0, 7), 'maxdate' => substr($s['pmaxdate'], 0, 7));
}
api_output($out);
return;
}
global $SEARCHENGINE;
$SEARCHENGINE = new SEARCHENGINE($search);
# $query_desc_short = $SEARCHENGINE->query_description_short();
$pagenum = get_http_var('page');
$args = array('s' => $search, 'p' => $pagenum, 'num' => get_http_var('num'), 'pop' => 1, 'o' => $o == 'd' || $o == 'r' ? $o : 'd');
$LIST = new HANSARDLIST();
$LIST->display('search', $args, 'api');
}
示例12: signup_form
function signup_form()
{
?>
<form class="free_our_bills_signup" method="post" action="subscribe">
<input type="hidden" name="posted" value="1">
<p><strong>This campaign can only succeed if normal internet users like you lend a hand.</strong>
Please sign up and we'll send you easy tasks (like emailing your MP, or coming up with some ideas). Together we can improve Parliament!
</p>
<p><label for="email">Your email:</label>
<input type="text" name="email" id="email" value="<?php
echo get_http_var('email');
?>
" size="30">
<br><label for="postcode">Your postcode:</label>
<input type="text" name="postcode" id="postcode" value="<?php
echo get_http_var('postcode');
?>
" size="10">
<input type="submit" class="submit" value="Join up">
</p>
</form>
<?php
}
示例13: fyr_display_emailform
function fyr_display_emailform()
{
$messages = array();
if (isset($_POST['action']) && $_POST['action'] == 'testmess') {
$messages = emailform_test_message();
if ($messages) {
emailform_display($messages);
return;
} else {
$dest = get_http_var('dest');
$contact_message = get_http_var('notjunk');
if ($dest == 'rep') {
$problem = 'You cannot contact your representative by filling in the WriteToThem contact form. To contact your representative, please visit <a href="/">www.writetothem.com</a> and enter your postcode. We have printed your message below so you can copy and paste it into the WriteToThem message box.';
wrongcontact_display($problem, $contact_message);
} elseif ($dest == 'other') {
$problem = 'You can only contact the team behind WriteToThem using our contact form. Your message is printed below so you can copy and paste it to wherever you want to send it.';
wrongcontact_display($problem, $contact_message);
} else {
if (emailform_send_message()) {
$messages['messagesent'] = 'Thanks, your message has been sent to ' . OPTION_WEB_DOMAIN;
} else {
$messages['messagenotsent'] = 'Sorry, there was a problem';
}
emailform_display($messages);
}
}
} else {
emailform_display($messages);
}
}
示例14: getSearchSections
protected function getSearchSections()
{
$sections = array(array('section' => 'wrans', 'title' => 'Written Answers'));
if (get_http_var('type') == '') {
$sections[] = array('section' => 'wms', 'title' => 'Written Ministerial Statements');
}
return $sections;
}
示例15: display_front
protected function display_front()
{
if (get_http_var('more')) {
return parent::display_front();
} else {
return $this->display_front_ni();
}
}