本文整理汇总了PHP中system::count_parametr方法的典型用法代码示例。如果您正苦于以下问题:PHP system::count_parametr方法的具体用法?PHP system::count_parametr怎么用?PHP system::count_parametr使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类system
的用法示例。
在下文中一共展示了system::count_parametr方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: die
<?php
die('<p style="font-size:36px;color:black;font-weight:bold;">404!</p>');
global $_str;
// check for crack!
if (isset($_GET['arhiv'])) {
system::count_parametr(3);
} else {
system::count_parametr(2);
}
// добавление новости
if (system::IsPost()) {
//echo "<pre>".print_r($_POST['FORM'],1)."</pre>";
$_str .= voting::set_voting();
}
$_str .= voting::get_vopros('/frontend/voting/vopros.php');
示例2: unset
if ($_arr) {
// устанавливаем свойства
$title->title = NAME_FIRMS . ' - ' . $_arr['title'];
$_arr['keywords'] != '' ? $title->keywords = $_arr['keywords'] : ($title->keywords = $_arr['title']);
$_arr['description'] != '' ? $title->description = $_arr['description'] : ($title->description = $_arr['title']);
$_arr['h1'] != '' ? $title->h1 = $_arr['h1'] : ($title->h1 = $_arr['title']);
}
/***************************************************************************************
***************************************************************************************/
global $_str;
// check for crack!
if (isset($_GET['page'])) {
system::count_parametr(4);
system::isset_numeric($_GET['page']);
} else {
system::count_parametr(3);
$_GET['page'] = 1;
}
// добавление новости
if (system::IsPost()) {
if (!captcha::check_captcha()) {
//выводим сообщение
Message::GetMessage(0, v::getI18n('message_error_captcha'));
} else {
// пишем в базу
Forms::MultyInsertForm('guestbook', 0);
// очищаем POST
unset($_POST);
// выводим мообщение
Message::GetMessage(1, v::getI18n('message_add_comment_to_guestbook'));
}