本文整理匯總了PHP中_GET函數的典型用法代碼示例。如果您正苦於以下問題:PHP _GET函數的具體用法?PHP _GET怎麽用?PHP _GET使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了_GET函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: on_init
protected function on_init()
{
$this->type = _GET('type', 'file');
if (!in_array($this->type, array('image', 'media', 'file'))) {
$this->type = 'file';
}
$this->vars['type'] = $this->type;
}
示例2: Process
function Process()
{
if (_GET('filename') == '') {
$this->Haxor();
return;
}
$img = new Image();
if (!$img->Find(array('filename' => _GET('filename')))) {
$this->Error('Requested file not found');
return;
}
$this->img = $img;
$this->Render();
}
示例3: Process
function Process()
{
if (_GET('filename') == '') {
$this->Haxor();
return;
}
$img = new Image();
if (!$img->Find(array('filename' => _GET('filename')))) {
$this->Error('Requested file not found');
return;
}
if (!InSESSION('view:' . _GET('filename'))) {
$_SESSION['view:' . _GET('filename')] = true;
$img->views++;
}
$img->lastshow = Now();
$img->Save();
$this->img = $img;
$this->Render();
}
示例4: Process
function Process()
{
if (_GET('filename') == '') {
$this->Haxor();
return;
}
$img = new Image();
if (!$img->Find(array('filename' => _GET('filename')))) {
$this->Error('Requested file not found');
return;
}
$this->img = $img;
if (_POST('delete')) {
if (!$this->CheckErrors()) {
$this->ProcessRemove();
header('location: ' . ROOT);
return;
}
}
$this->Render();
}
示例5: _GET
include_once "../../../class/config.php";
// загружаем классы настроек
include_once "../../../class/users.php";
// загружаем классы работы с пользователями
include_once "../../../class/employees.php";
// загружаем классы работы с профилем пользователя
// загружаем все что нужно для работы движка
include_once "../../../inc/connect.php";
// соеденяемся с БД, получаем $mysql_base_id
include_once "../../../inc/config.php";
// подгружаем настройки из БД, получаем заполненый класс $cfg
include_once "../../../inc/functions.php";
// загружаем функции
include_once "../../../inc/login.php";
// загружаем функции
$orgid = _GET('orgid');
?>
<table id="mytable" class="table table-striped">
<thead>
<tr>
<th>Статус</th>
<th>IP (имя)</th>
<th>Название</th>
<th>Группа</th>
<th>Где</th>
</tr>
</thead>
<tbody>
<?php
$SQL = "SELECT places.name as pname,eq3.grname as grname,eq3.ip as ip,eq3.nomename as nomename FROM places INNER JOIN\n (SELECT eq2.placesid as placesid,group_nome.name as grname,eq2.ip as ip,eq2.nomename as nomename FROM group_nome INNER JOIN\n (SELECT eq.placesid as placesid,nome.groupid as groupid,eq.ip as ip,nome.name as nomename FROM nome INNER JOIN \n (SELECT equipment.placesid as placesid,equipment.nomeid as nomeid,equipment.ip as ip FROM equipment WHERE equipment.active=1 and equipment.ip<>'' and equipment.orgid='{$orgid}') as eq ON eq.nomeid=nome.id) as eq2 ON eq2.groupid=group_nome.id) as eq3 ON places.id=eq3.placesid";
$result = $sqlcn->ExecuteSQL($SQL) or die("Не получилось выполнить запрос на получение списка номенклатуры!" . mysqli_error($sqlcn->idsqlconnection));
示例6: array
}
return $timestamp;
}
$products = array('-1' => 'Any', '1' => 'QuikID');
$all = 0;
$rowsperpage = 10;
$adminpage = 'on';
$action = _GET('action', '');
$entryid = _GET('entryid', -1);
$pg = _GET('pg', 1);
$product = _GET('fil_product', -1);
$company = _GET('fil_company', '');
$email = _GET('fil_email', '');
$stdate = _GET('fil_stdate', '');
$enddate = _GET('fil_enddate', '');
$fall = _GET('fil_all', '');
if ($fall != '') {
$all = 1;
}
$frm = file_get_contents('pages/_download_track.frm');
$opts = '';
foreach ($products as $key => $val) {
if ($key == $product) {
$chk = 'selected';
} else {
$chk = '';
}
$opts .= '<option value="' . $key . '" ' . $chk . '>' . $val . '</option>';
}
$fall = $all != 0 ? 'checked' : '';
$frm = str_replace('@products@', $opts, $frm);
示例7: Pool
"6 Spawning Pool\n" +
"7 Zergling [3]\n" +
"10 Overlord\n" +
"10 Queen\n" +
"12 Zergling\n");
$("#buildOrder").trigger("change");
});
$("#14pool15hatch").click(function() {
$("#buildOrder").val(
"9 Overlord\n" +
"14 Spawning Pool (send @175 minerals)\n" +
"15 Hatchery, then transfer 8 drones (10 seconds lost)\n" +
"16 Extractor, then transfer 3 drones (2 seconds lost)\n" +
"16 Queen, then Spawn Larvae\n" +
"18 Overlord\n");
$("#buildOrder").trigger("change");
});
<?php
if (strlen($this->buildOrder) > 0) {
?>
$(".update").trigger("click");
<?php
}
?>
});
//--></script>
<?php
}
}
new BuildOrderPage(_GET("buildOrder"));
示例8: error_reporting
<?php
error_reporting(E_ALL);
define('TimeZone', +8.0);
function _GET($n)
{
return isset($_GET[$n]) ? $_GET[$n] : NULL;
}
function _SERVER($n)
{
return isset($_SERVER[$n]) ? $_SERVER[$n] : '[undefine]';
}
if (_GET('act') == 'phpinfo') {
if (function_exists('phpinfo')) {
phpinfo();
} else {
echo 'phpinfo() Function has been disabled.';
}
exit;
}
$Info = array();
$Info['php_ini_file'] = function_exists('php_ini_loaded_file') ? php_ini_loaded_file() : '[undefine]';
function get_ea_info($name)
{
$ea_info = eaccelerator_info();
return $ea_info[$name];
}
function get_gd_info($name)
{
$gd_info = gd_info();
return $gd_info[$name];
示例9: _GET
// загружаем классы настроек
include_once "../../../class/users.php";
// загружаем классы работы с пользователями
include_once "../../../class/employees.php";
// загружаем классы работы с профилем пользователя
// загружаем все что нужно для работы движка
include_once "../../../inc/connect.php";
// соеденяемся с БД, получаем $mysql_base_id
include_once "../../../inc/config.php";
// подгружаем настройки из БД, получаем заполненый класс $cfg
include_once "../../../inc/functions.php";
// загружаем функции
include_once "../../../inc/login.php";
// загружаем функции
// Получаем переменные, проверяем на правильность заполнения
$step = _GET("step");
$orgid = _POST("orgid");
if ($orgid == "") {
$err[] = "Не выбрана организация!";
}
$login = _POST("login");
if ($login == "") {
$err[] = "Не задан логин!";
}
$pass = _POST("pass");
if ($pass == "") {
$err[] = "Не задан пароль!";
}
$email = _POST("email");
if ($email == "") {
$err[] = "Не задан E-mail!";
示例10: if
<section class="navigator">
<div class="title-head">
<h3 class="title">#<%= navigator.ret[0].topic_name %>#</h3>
<h5 class="discuss"><%= navigator.ret[0].commentCount %> 討論</h5>
</div>
<p class="title-content"><%= navigator.ret[0].topic_desc %></p>
</section>
</script>
<script type="text/template" id="recommend_template">
<section class="recommend-head clearfix">
<h4 class="recommend-title">#<%= recommend.data.relate_forum_title %>#相關吧推薦</h4>
<!-- 滑動按鈕 -->
<% if (_.keys(recommend.data.output).length > 4){ %>
<div class="recommend-see-all all"><a href="<?php
echo 'http://tieba.baidu.com/mo/q/hotMessageMore?topic_id=' . _GET('topic_id');
?>
">查看全部</a></div>
<% } else { %>
<div class="swiper-pagination recommend-pagination"></div>
<% } %>
</section>
<div class='recommend-content swiper-container slider-container'>
<ul class="swiper-wrapper clearfix">
<% if (_.keys(recommend.data.output).length <= 4 ){ %>
<% _.each(recommend.data.output, function (value, name) { %>
<li class="swiper-slide clearfix">
<a class="media-left" href="http://tieba.baidu.com/f?kw=<%= value.forum_name.forum_name %>&ie=utf-8">
<img class="image-radius" src="<%= value.card.avatar %>" alt="image" />
</a>
<div class="media-content">
示例11: _GET
<?php
$rowsperpage = 10;
$adminpage = 'on';
$action = _GET('action', '');
$pressid = _GET('pressid', -1);
$pg = _GET('pg', 1);
if ($pg < 1) {
$pg = 1;
}
switch ($action) {
case 'remove':
RemoveNews($pressid);
}
$first = ($pg - 1) * $rowsperpage;
$no = $first + 1;
$articles = GetPressList($first, $rowsperpage, BLOG);
$content .= '<section id="adm_container">
<div class="container">';
$content .= '<p class="pressEdit-list">Total news: ' . GetNewsCount(BLOG) . '</p>';
$table = "<!--- start list of articles -->";
foreach ($articles as $key => $row) {
$rowtpl = '<p class="pressEdit-list">@NO@: <a href="@EDITLINK@">@TITLE@</a> <a href="@DELLINK@">X</a></p>';
if ($row['flags'] == 1) {
$nostr = '*' . $no;
} else {
$nostr = $no;
}
if ($row['flags'] & 2) {
$nostr = '(T)' . $nostr;
}
示例12: _GET
* В противном случае - код собственность ГК Яртелесервис, Мультистрим, Телесервис, Телесервис плюс *
*/
include_once "../../../config.php";
// загружаем первоначальные настройки
// загружаем классы
include_once "../../../class/sql.php";
// загружаем классы работы с БД
include_once "../../../class/config.php";
// загружаем классы настроек
include_once "../../../class/users.php";
// загружаем классы работы с пользователями
include_once "../../../class/cconfig.php";
// загружаем классы работы с пользователями
// загружаем все что нужно для работы движка
include_once "../../../inc/connect.php";
// соеденяемся с БД, получаем $mysql_base_id
include_once "../../../inc/config.php";
// подгружаем настройки из БД, получаем заполненый класс $cfg
include_once "../../../inc/functions.php";
// загружаем функции
include_once "../../../inc/login.php";
// загружаем функции
$value = _GET("value");
$tag = _GET("tag");
$mode = _GET("mode");
$tt = new Tcconfig();
if ($mode == "txt") {
$tt->SetByParam($user->id . "_zabbix_time", $value);
} else {
$tt->SetByParam($user->id . "_{$tag}", $value);
}
示例13: _GET
// загружаем классы работы с профилем пользователя
// загружаем все что нужно для работы движка
include_once "../../../inc/connect.php";
// соеденяемся с БД, получаем $mysql_base_id
include_once "../../../inc/config.php";
// подгружаем настройки из БД, получаем заполненый класс $cfg
include_once "../../../inc/functions.php";
// загружаем функции
include_once "../../../inc/login.php";
// соеденяемся с БД, получаем $mysql_base_id
$page = _GET('page');
$limit = _GET('rows');
$sidx = _GET('sidx');
$sord = _GET('sord');
$oper = _POST('oper');
$curuserid = _GET('curuserid');
$id = _POST('id');
if ($oper == '') {
if (!$sidx) {
$sidx = 1;
}
$result = $sqlcn->ExecuteSQL("SELECT COUNT(*) AS count ,name as grname,res2.* FROM group_nome INNER JOIN (SELECT places.name as plname,res.* FROM places INNER JOIN(\n SELECT name AS namenome,nome.groupid as grpid, eq . * FROM nome INNER JOIN (\n SELECT equipment.id AS eqid, equipment.placesid AS plid, equipment.nomeid AS nid, equipment.buhname AS bn, equipment.cost AS cs, equipment.currentcost AS curc, equipment.invnum, equipment.sernum, equipment.shtrihkod, equipment.mode, equipment.os FROM equipment \n WHERE equipment.active =1 and equipment.usersid='{$curuserid}')\n AS eq ON nome.id = eq.nid)\n AS res ON places.id=res.plid) AS res2 ON group_nome.id=res2.grpid");
$row = mysqli_fetch_array($result);
$count = $row['count'];
if ($count > 0) {
$total_pages = ceil($count / $limit);
} else {
$total_pages = 0;
}
if ($page > $total_pages) {
$page = $total_pages;
示例14: _GET
/*
* (с) 2014 Грибов Павел
* http://грибовы.рф *
* Если исходный код найден в сети - значит лицензия GPL v.3 *
* В противном случае - код собственность ГК Яртелесервис, Мультистрим, Телесервис, Телесервис плюс *
*/
include_once "../../../config.php";
// загружаем первоначальные настройки
// загружаем классы
include_once "../../../class/sql.php";
// загружаем классы работы с БД
include_once "../../../class/config.php";
// загружаем классы настроек
include_once "../../../class/users.php";
// загружаем классы работы с пользователями
include_once "../../../class/employees.php";
// загружаем классы работы с профилем пользователя
// загружаем все что нужно для работы движка
include_once "../../../inc/connect.php";
// соеденяемся с БД, получаем $mysql_base_id
include_once "../../../inc/config.php";
// подгружаем настройки из БД, получаем заполненый класс $cfg
include_once "../../../inc/functions.php";
// загружаем функции
include_once "../../../inc/login.php";
// загружаем функции
$nodekey = _GET('nodekey');
$srnodekey = _GET('srnodekey');
$sql = "UPDATE cloud_dirs SET parent='{$nodekey}' where id='{$srnodekey}'";
$result3 = $sqlcn->ExecuteSQL($sql) or die("Не могу обновить терево папок!" . mysqli_error($sqlcn->idsqlconnection));
示例15: elseif
$products[1]['ItemName'] = 'my item 2'; //Item Name
$products[1]['ItemPrice'] = 10; //Item Price
$products[1]['ItemNumber'] = 'xxx2'; //Item Number
$products[1]['ItemDesc'] = 'good item 2'; //Item Number
$products[1]['ItemQty'] = 3; // Item Quantity
*/
//-------------------- prepare charges -------------------------
$charges = [];
//Other important variables like tax, shipping cost
$charges['TotalTaxAmount'] = 0;
//Sum of tax for all items in this order.
$charges['HandalingCost'] = 0;
//Handling cost for this order.
$charges['InsuranceCost'] = 0;
//shipping insurance cost for this order.
$charges['ShippinDiscount'] = 0;
//Shipping discount for this order. Specify this as negative number.
$charges['ShippinCost'] = 0;
//Although you may change the value later, try to pass in a shipping amount that is reasonably accurate.
//------------------SetExpressCheckOut-------------------
//We need to execute the "SetExpressCheckOut" method to obtain paypal token
$paypal->SetExpressCheckOut($products, $charges);
} elseif (_GET('token') != '' && _GET('PayerID') != '') {
//------------------DoExpressCheckoutPayment-------------------
//Paypal redirects back to this page using ReturnURL, We should receive TOKEN and Payer ID
//we will be using these two variables to execute the "DoExpressCheckoutPayment"
//Note: we haven't received any payment yet.
$paypal->DoExpressCheckoutPayment();
} else {
//order form
}