• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP get_var函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中get_var函数的典型用法代码示例。如果您正苦于以下问题:PHP get_var函数的具体用法?PHP get_var怎么用?PHP get_var使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了get_var函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: buy_basic

function buy_basic($item_sql, $item_max_sql, $item_str, $cost)
{
    global $amount, $user, $user_ship, $db_name, $st, $cw;
    settype($amount, "int");
    //security check
    $ret_str = "";
    if ($user_ship[$item_sql] >= $user_ship[$item_max_sql]) {
        $ret_str .= sprintf($st[1052], $item_str);
    } elseif ($amount < 1) {
        $amount_can_buy = floor($user['cash'] / $cost);
        if ($amount_can_buy > $user_ship[$item_max_sql] - $user_ship[$item_sql]) {
            $amount_can_buy = $user_ship[$item_max_sql] - $user_ship[$item_sql];
        }
        get_var($cw['buy'] . " {$item_str}", 'equip_shop.php', sprintf($st[759], $item_str), 'amount', $amount_can_buy);
    } else {
        $total_cost = $amount * $cost;
        if ($user['cash'] < $total_cost) {
            $ret_str .= $st[1054] . "<b class='b1'>{$item_str}</b>.<p />";
        } elseif ($user_ship[$item_sql] + $amount > $user_ship[$item_max_sql]) {
            $ret_str .= $st[1055] . " <b class='b1'>{$item_str}</b>.<p />";
        } else {
            $ret_str .= "<b>{$amount}</b> <b class='b1'>{$item_str}</b> " . $cw['purchased_for'] . " <b>{$total_cost}</b> " . $cw['credits.'] . "<p />";
            take_cash($total_cost);
            dbn("update {$db_name}_ships set {$item_sql} = {$item_sql} + '{$amount}' where ship_id = '{$user_ship['ship_id']}'");
            $user_ship[$item_sql] += $amount;
        }
    }
    return $ret_str;
}
开发者ID:nilsine,项目名称:Astra-Vires,代码行数:29,代码来源:equip_shop.php


示例2: nextmatchs

 function nextmatchs($website = False)
 {
     if (!$website) {
         $this->template = createobject('phpgwapi.Template', PHPGW_TEMPLATE_DIR);
         $this->template->set_file(array('_nextmatchs' => 'nextmatchs.tpl'));
         $this->template->set_block('_nextmatchs', 'nextmatchs');
         $this->template->set_block('_nextmatchs', 'filter');
         $this->template->set_block('_nextmatchs', 'form');
         $this->template->set_block('_nextmatchs', 'icon');
         $this->template->set_block('_nextmatchs', 'link');
         $this->template->set_block('_nextmatchs', 'search');
         $this->template->set_block('_nextmatchs', 'cats');
         $this->template->set_block('_nextmatchs', 'search_filter');
         $this->template->set_block('_nextmatchs', 'cats_search_filter');
     }
     if (isset($GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs']) && (int) $GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'] > 0) {
         $this->maxmatches = (int) $GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'];
     } else {
         $this->maxmatches = 15;
     }
     $this->_start = (int) get_var('start', array('GLOBAL', 'POST', 'GET'));
     foreach (array('menuaction', 'filter', 'qfield', 'order', 'sort') as $name) {
         $var = '_' . $name;
         $this->{$var} = get_var($name, array('GLOBAL', 'POST', 'GET'));
         if (!preg_match('/^[a-z0-9_. -]*$/i', $this->{$var})) {
             $this->{$var} = '';
         }
     }
     if (!is_object($GLOBALS['phpgw']->html)) {
         $GLOBALS['phpgw']->html = CreateObject('phpgwapi.html');
     }
 }
开发者ID:BackupTheBerlios,项目名称:milaninegw-svn,代码行数:32,代码来源:class.nextmatchs.inc.php


示例3: ds

 function ds()
 {
     $data['title'] = "Danh sách sản phẩm";
     $data['add'] = 'product/add';
     $cat_id = get_var('cat_id', 'int');
     $key_word = get_var('key');
     $field = get_var('f') ? get_var('f') : 't.id';
     $order = get_var('o') ? get_var('o') : 'desc';
     $get = $this->request->get;
     $str = '';
     foreach ($get as $val => $keys) {
         $str .= '&' . $val . '=' . $keys;
     }
     $str = trim($str, '&');
     $str_get = count($get) ? '?' . $str : '';
     $data['cat_id'] = $cat_id;
     $data['keyword'] = $key_word;
     $data['dscat'] = $this->product->get_all_cat();
     $config['base_url'] = base_url() . 'product/ds';
     $config['suffix'] = '.html' . $str_get;
     $config['total_rows'] = $this->product->get_num_product($key_word, $cat_id);
     $data['num'] = $config['total_rows'];
     $config['per_page'] = 10;
     $config['uri_segment'] = 3;
     $this->load->library('pagination');
     $this->pagination->initialize($config);
     $data['list'] = $this->product->get_all_product($config['per_page'], segment(3, 'int'), $key_word, $cat_id, $field, $order);
     $data['pagination'] = $this->pagination->create_links();
     $this->load->templates('product/ds', $data, 'file');
 }
开发者ID:VoDongMy,项目名称:VoDongMy,代码行数:30,代码来源:product.php


示例4: generate_header

 function generate_header()
 {
     $GLOBALS['header_template']->set_file(array('header' => 'header.inc.php.template'));
     $GLOBALS['header_template']->set_block('header', 'domain', 'domain');
     $var = array();
     $deletedomain = get_var('deletedomain', array('POST'));
     $domains = get_var('domains', array('POST'));
     @reset($domains);
     while ($domains && (list($k, $v) = @each($domains))) {
         if (isset($deletedomain[$k])) {
             continue;
         }
         //$dom = get_var('setting_'.$k,Array('POST'));
         $dom = $_POST['settings'][$k];
         $GLOBALS['header_template']->set_var('DB_DOMAIN', $v);
         while (list($x, $y) = @each($dom)) {
             $GLOBALS['header_template']->set_var(strtoupper($x), $y);
         }
         $GLOBALS['header_template']->parse('domains', 'domain', True);
     }
     $GLOBALS['header_template']->set_var('domain', '');
     $setting = get_var('setting', array('POST'));
     if (!empty($setting) && is_array($setting)) {
         foreach ($setting as $k => $v) {
             $var[strtoupper($k)] = $v;
         }
     }
     $GLOBALS['header_template']->set_var($var);
     return $GLOBALS['header_template']->parse('out', 'header');
 }
开发者ID:helenadeus,项目名称:s3db.map,代码行数:30,代码来源:class.setup_html.inc.php


示例5: index

 function index()
 {
     $data['title'] = "Quản lý Danh Bạ";
     $data['delete'] = true;
     $data['add'] = 'contacts/add';
     $field = get_var('field') ? get_var('field') : 'id';
     $order = get_var('order') ? get_var('order') : 'desc';
     $key_word = $_GET['key'];
     $id_office = get_var('id', 'int');
     $data['key'] = $key_word;
     $data['id_office'] = $id_office;
     $data['field'] = $field;
     $data['order'] = $order;
     $data['page'] = get_var('page', 'int');
     $get = $this->request->get;
     $str = '';
     foreach ($get as $val => $keys) {
         $str .= '&' . $val . '=' . $keys;
     }
     $str = trim($str, '&');
     $str_get = count($get) ? '?' . $str : '';
     $data['listoffice'] = $this->contacts->get_all_office();
     $config['base_url'] = base_url() . 'contacts/' . $this->uri->segment(2) . '/';
     $config['suffix'] = '.html' . $str_get;
     $config['total_rows'] = $this->contacts->get_num_contacts($key_word, $id_office);
     $data['num'] = $config['total_rows'];
     $config['per_page'] = 20;
     $config['uri_segment'] = 3;
     $this->load->library('pagination');
     $this->pagination->initialize($config);
     $data['list'] = $this->contacts->get_all_contacts($config['per_page'], segment(3, 'int'), $field, $order, $key_word, $id_office);
     //var_dump($data['list']);
     $data['pagination'] = $this->pagination->create_links();
     $this->load->templates('index', $data);
 }
开发者ID:VoDongMy,项目名称:VoDongMy,代码行数:35,代码来源:contacts.php


示例6: execute

 function execute()
 {
     ob_start();
     $act = get_var($this->rg->get('act'));
     $det = get_var($this->rg->get('det'));
     $api = $this->rg->get('api');
     if ($api) {
         $action = BASEPATH . 'api/' . $api . '/controllers/' . $act . EXT;
         if (file_exists($action)) {
             include_once $action;
             if (class_exists($act)) {
                 $exec = new $act();
                 if ($det) {
                     if (method_exists($exec, $det)) {
                         $exec->{$det}();
                     }
                 } else {
                     if (method_exists($exec, 'execute')) {
                         $exec->execute();
                     }
                 }
             } else {
                 include BASEPATH . 'errors/503' . EXT;
             }
         } else {
             include BASEPATH . 'errors/503' . EXT;
         }
     }
     ob_end_flush();
 }
开发者ID:ovarz,项目名称:cobablue,代码行数:30,代码来源:views.php


示例7: showLinks

 function showLinks($name, $app, $id, $only_app = '', $show_unlink = True)
 {
     $value = get_var($name, array('POST'));
     if (!is_array($value)) {
         $value = array();
     }
     list($unlink) = @each($value['unlink']);
     if ($this->debug) {
         echo "<p>uilink.showLinks: app='{$app}',id='{$id}', unlink={$unlink}, {$name} = ";
         _debug_array($value);
     }
     if ($unlink) {
         $this->unlink($unlink, $app, $id);
         //echo "<p>$unlink unlinked</p>\n";
     }
     $etemplate = CreateObject('etemplate.etemplate', 'infolog.linklist_widget');
     $links = $this->get_links($app, $id, $only_app);
     $value = array();
     for ($row = $etemplate->rows - 1; list(, $link) = each($links); ++$row) {
         $value[$row] = $link;
         $value[$row]['title'] = $this->title($link['app'], $link['id']);
     }
     $value['app'] = $app;
     $value['id'] = $id;
     $value['title'] = $this->title($app, $id);
     $out = $etemplate->show($value, '', '', $name);
     $out = str_replace('[]', '', $out);
     return eregi_replace('[</]*table[^>]*>', '', $out);
 }
开发者ID:BackupTheBerlios,项目名称:milaninegw-svn,代码行数:29,代码来源:class.uilink.inc.php


示例8: check_form_values

function check_form_values()
{
    // PHP will automatically replace any dots in incoming
    // variable names with underscores.
    $errors = '';
    $domains = get_var('domains', array('POST'));
    @reset($domains);
    while (list($k, $v) = @each($domains)) {
        $variableName = str_replace('.', '_', $k);
        $deletedomain = get_var('deletedomain', array('POST'));
        if (isset($deletedomain[$variableName])) {
            continue;
        }
        $dom = get_var('setting_' . $variableName, array('POST'));
        if (!$dom['config_pass'] && !$dom['config_password']) {
            $errors .= '<br>' . lang("You didn't enter a config password for domain %1", $v);
        }
        if (!$dom['config_user']) {
            $errors .= '<br>' . lang("You didn't enter a config username for domain %1", $v);
        }
    }
    $setting = get_var('setting', array('POST'));
    if (!$setting['HEADER_ADMIN_PASSWORD'] && !$setting['HEADER_ADMIN_PASS']) {
        $errors .= '<br>' . lang("You didn't enter a header admin password");
    }
    if (!$setting['HEADER_ADMIN_USER']) {
        $errors .= '<br>' . lang("You didn't enter a header admin username");
    }
    if ($errors) {
        $GLOBALS['phpgw_setup']->html->show_header('Error', True);
        echo $errors;
        echo '<p><input type="submit" value="' . lang('Back to the previous screen') . '" onClick="history.back()"></p>';
        exit;
    }
}
开发者ID:BackupTheBerlios,项目名称:milaninegw-svn,代码行数:35,代码来源:manageheader.php


示例9: get_filecatname

function get_filecatname($catid)
{
    $sql_pre = "SELECT `catname` FROM `yxy_filecat` WHERE `id` = ?i";
    $array = array($catid);
    $sql = prepare($sql_pre, $array);
    return get_var($sql);
}
开发者ID:doumaomao,项目名称:Lazy-lawyer,代码行数:7,代码来源:default.function.php


示例10: editdatabase

 function editdatabase()
 {
     $GLOBALS['phpgw_info']['flags']['app_header'] = 'SyncML synchronization: Edit database';
     $database_id = get_var('database_id', array('POST', 'GET'));
     $submit = get_var('submit', array('POST'));
     $values = get_var('values', array('POST'));
     if (is_array($values)) {
         if (isset($submit['add']) && $submit['add']) {
             /*
             $this->sodatabases->insert_database(
             	$values['uri'],
             	$values['app'],
             	base64_encode(md5(
             		$account_lid . ':' . $password, true
             	))
             );
             */
         }
         $GLOBALS['phpgw']->redirect_link('/index.php', array('menuaction' => 'syncml.uisyncml.listdatabases'));
     } else {
         if ($database_id) {
             // todo: get database data from database.
             $GLOBALS['phpgw']->xslttpl->set_var('phpgw', array('edit_database' => array('action_url' => $GLOBALS['phpgw']->link('/index.php', array('menuaction' => 'syncml.uisyncml.editdatabase')), 'database_id' => $database_id)));
         }
     }
 }
开发者ID:HaakonME,项目名称:porticoestate,代码行数:26,代码来源:class.uisyncml.inc.php


示例11: display_section

 function display_section($_menuData)
 {
     $i = 0;
     // reset the value of all_rows
     $this->t->set_var('all_rows', '');
     while (list($key, $value) = each($_menuData)) {
         if (!empty($value['extradata'])) {
             $link = $GLOBALS['phpgw']->link($value['url'], 'account_id=' . get_var('account_id', array('GET', 'POST')) . '&' . $value['extradata']);
         } else {
             $link = $GLOBALS['phpgw']->link($value['url'], 'account_id=' . get_var('account_id', array('GET', 'POST')));
         }
         $this->section_item($link, lang($value['description']), $this->rowColor[$i % 2]);
         $i++;
     }
     $this->t->set_var('th_bg', $GLOBALS['phpgw_info']['theme']['th_bg']);
     if (strpos($_menuData[0]['extradata'], 'user')) {
         $destination = 'users';
     } else {
         $destination = 'groups';
     }
     $this->t->set_var('link_done', $GLOBALS['phpgw']->link('/index.php', 'menuaction=admin.uiaccounts.list_' . $destination));
     $this->t->set_var('lang_done', lang('Back'));
     $this->t->set_var('row_on', $this->rowColor[0]);
     $this->t->parse('out', 'menu_links');
     return $this->t->get('out', 'menu_links');
 }
开发者ID:BackupTheBerlios,项目名称:milaninegw-svn,代码行数:26,代码来源:class.uimenuclass.inc.php


示例12: is_single

/**
 * Checks if current page is a single view page
 */
function is_single()
{
    $action = get_var('action');
    if ($action == 'view' || $action == 'add') {
        return true;
    } else {
        return false;
    }
}
开发者ID:Hackmastr,项目名称:apps-base,代码行数:12,代码来源:functions-core.php


示例13: __construct

 final function __construct($id)
 {
     parent::__construct($id);
     $this->_ancho = get_var($this->_info_firma['ancho'], '500px');
     $this->_alto = get_var($this->_info_firma['alto'], '120px');
     if (isset($this->_memoria['dir_actual'])) {
         $this->_multiple = $this->_memoria['multiple'];
     }
 }
开发者ID:emma5021,项目名称:toba,代码行数:9,代码来源:toba_ei_firma.php


示例14: generate_header

 function generate_header()
 {
     // PHP will automatically replace any dots in incoming
     // variable names with underscores.
     $GLOBALS['header_template']->set_file(array('header' => 'header.inc.php.template'));
     $GLOBALS['header_template']->set_block('header', 'domain', 'domain');
     $var = array();
     $deletedomain = get_var('deletedomain', array('POST'));
     $domains = get_var('domains', array('POST'));
     @reset($domains);
     while ($domains && (list($k, $v) = @each($domains))) {
         if (isset($deletedomain[$k])) {
             continue;
         }
         $variableName = str_replace('.', '_', $k);
         $dom = get_var('setting_' . $variableName, array('POST'));
         $GLOBALS['header_template']->set_var('DB_DOMAIN', $v);
         while (list($x, $y) = @each($dom)) {
             if (strtoupper($x) == 'CONFIG_PASS') {
                 $GLOBALS['header_template']->set_var(strtoupper($x), md5($y));
             } else {
                 $GLOBALS['header_template']->set_var(strtoupper($x), $y);
             }
         }
         /* Admin did not type a new password, so use the old one from the hidden field,
          * which is already md5 encoded.
          */
         if ($dom['config_password'] && !$dom['config_pass']) {
             /* Real == hidden */
             $GLOBALS['header_template']->set_var('CONFIG_PASS', $dom['config_password']);
         }
         /* If the admin didn't select a db_port, set to the default */
         if (!$dom['db_port']) {
             $GLOBALS['header_template']->set_var('DB_PORT', $GLOBALS['default_db_ports'][$dom['db_type']]);
         }
         $GLOBALS['header_template']->parse('domains', 'domain', True);
     }
     $GLOBALS['header_template']->set_var('domain', '');
     $setting = get_var('setting', array('POST'));
     while ($setting && (list($k, $v) = @each($setting))) {
         if (strtoupper($k) == 'HEADER_ADMIN_PASSWORD') {
             $var[strtoupper($k)] = md5($v);
         } else {
             $var[strtoupper($k)] = $v;
         }
     }
     /* Admin did not type a new header password, so use the old one from the hidden field,
      * which is already md5 encoded.
      */
     if ($var['HEADER_ADMIN_PASS'] && empty($setting['HEADER_ADMIN_PASSWORD'])) {
         /* Real == hidden */
         $var['HEADER_ADMIN_PASSWORD'] = $var['HEADER_ADMIN_PASS'];
     }
     $GLOBALS['header_template']->set_var($var);
     return $GLOBALS['header_template']->parse('out', 'header');
 }
开发者ID:BackupTheBerlios,项目名称:milaninegw-svn,代码行数:56,代码来源:class.setup_html.inc.php


示例15: getIdByMark

 /**
  * 通过标记名获取ID
  *
  * @author boxcore
  * @date   2014-09-17
  * @param  string     $mark 标记
  * @return int        task_id
  */
 public function getIdByMark($mark = '')
 {
     $id = 0;
     $mark = trim($mark);
     if (!empty($mark)) {
         $sql = prepare('SELECT `id` FROM `task_list` WHERE `mark` = ?s LIMIT 1', array($mark));
         $id = get_var($sql);
     }
     return $id;
 }
开发者ID:boxcore,项目名称:xspider,代码行数:18,代码来源:TaskModel.php


示例16: __construct

 final function __construct($id)
 {
     parent::__construct($id);
     $this->_alto = get_var($this->_info_grafico['alto'], 300);
     $this->_ancho = get_var($this->_info_grafico['ancho'], 650);
     $this->_tipo = get_var($this->_info_grafico['grafico']);
     $this->ini_conf();
     //TODO: Hack para navegacion ajax con windows
     toba_ci::set_navegacion_ajax(false);
 }
开发者ID:emma5021,项目名称:toba,代码行数:10,代码来源:toba_ei_grafico.php


示例17: get_brand_id

/**
 * 获取品牌ID,无则创建
 *
 * @author boxcore
 * @date   2014-09-17
 * @param  string     $brand_name [description]
 * @return [type]               [description]
 */
function get_brand_id($brand_name = '')
{
    $brand_id = 0;
    $brand_name = trim($brand_name);
    if (!empty($brand_name)) {
        $brand_id = get_var("SELECT `brand_id` FROM `ecs_brand` WHERE `brand_name` = '{$brand_name}' LIMIT 1");
        if (empty($brand_id)) {
            $brand_id = insert('ecs_brand', array('brand_name' => $brand_name));
        }
    }
    return $brand_id;
}
开发者ID:boxcore,项目名称:xspider,代码行数:20,代码来源:ecshop.fn.php


示例18: list_history

 function list_history()
 {
     $account_id = get_var('account_id', array('GET', 'POST'));
     $start = get_var('start', array('POST'), 0);
     $sort = get_var('sort', array('POST'), 0);
     $order = get_var('order', array('POST'), 0);
     $GLOBALS['phpgw_info']['flags']['app_header'] = lang('Admin') . ' - ' . lang('View access log');
     if (!@is_object($GLOBALS['phpgw']->js)) {
         $GLOBALS['phpgw']->js = CreateObject('phpgwapi.javascript');
     }
     $GLOBALS['phpgw']->js->validate_file('jscode', 'openwindow', 'admin');
     $GLOBALS['phpgw']->common->phpgw_header();
     echo parse_navbar();
     $total_records = $this->bo->total($account_id);
     $var = array('th_bg' => $GLOBALS['phpgw_info']['theme']['th_bg'], 'nextmatchs_left' => $this->nextmatchs->left('/index.php', $start, $total_records, '&menuaction=admin.uiaccess_history.list_history&account_id=' . $account_id), 'nextmatchs_right' => $this->nextmatchs->right('/index.php', $start, $total_records, '&menuaction=admin.uiaccess_history.list_history&account_id=' . $account_id), 'showing' => $this->nextmatchs->show_hits($total_records, $start), 'lang_loginid' => lang('LoginID'), 'lang_ip' => lang('IP'), 'lang_login' => lang('Login'), 'lang_logout' => lang('Logout'), 'lang_total' => lang('Total'));
     if ($account_id) {
         $var['link_return_to_view_account'] = '<a href="' . $GLOBALS['phpgw']->link('/index.php', array('menuaction' => 'admin.uiaccounts.view', 'account_id' => $account_id)) . '">' . lang('Return to view account') . '</a>';
         $var['lang_last_x_logins'] = lang('Last %1 logins for %2', $total_records, $GLOBALS['phpgw']->common->grab_owner_name($account_id));
     } else {
         $var['lang_last_x_logins'] = lang('Last %1 logins', $total_records);
     }
     $this->template->set_var($var);
     $records = $this->bo->list_history($account_id, $start, $order, $sort);
     while (is_array($records) && (list(, $record) = each($records))) {
         $this->nextmatchs->template_alternate_row_color($this->template);
         $var = array('row_loginid' => $record['loginid'], 'row_ip' => $record['ip'], 'row_li' => $record['li'], 'row_lo' => $record['account_id'] ? $record['lo'] : '<b>' . lang($record['sessionid']) . '</b>', 'row_total' => $record['lo'] ? $record['total'] : '&nbsp;');
         $this->template->set_var($var);
         $this->template->fp('rows_access', 'row', True);
     }
     if (!$total_records && $account_id) {
         $this->nextmatchs->template_alternate_row_color($this->template);
         $this->template->set_var('row_message', lang('No login history exists for this user'));
         $this->template->fp('rows_access', 'row_empty', True);
     }
     $loggedout = $this->bo->return_logged_out($account_id);
     if ($total_records) {
         $percent = round(10000 * ($loggedout / $total_records) / 100);
     } else {
         $percent = '0';
     }
     $var = array('bg_color' => $GLOBALS['phpgw_info']['themes']['bg_color'], 'footer_total' => lang('Total records') . ': ' . $total_records);
     if ($account_id) {
         $var['lang_percent'] = lang('Percent this user has logged out') . ': ' . $percent . '%';
     } else {
         $var['lang_percent'] = lang('Percent of users that logged out') . ': ' . $percent . '%';
     }
     // create the menu on the left, if needed
     $menuClass = CreateObject('admin.uimenuclass');
     $var['rows'] = $menuClass->createHTMLCode('view_account');
     $this->template->set_var($var);
     $this->template->pfp('out', 'list');
 }
开发者ID:BackupTheBerlios,项目名称:milaninegw-svn,代码行数:52,代码来源:class.uiaccess_history.inc.php


示例19: boconfig

 function boconfig()
 {
     $action = get_var('action', array('GET'));
     $this->debug = False;
     $this->boprojects = CreateObject('projects.boprojects', True, $action);
     $this->soconfig = $this->boprojects->soconfig;
     $this->start = $this->boprojects->start;
     $this->query = $this->boprojects->query;
     $this->filter = $this->boprojects->filter;
     $this->order = $this->boprojects->order;
     $this->sort = $this->boprojects->sort;
     $this->cat_id = $this->boprojects->cat_id;
 }
开发者ID:BackupTheBerlios,项目名称:milaninegw-svn,代码行数:13,代码来源:class.boconfig.inc.php


示例20: randomSequences

function randomSequences($count)
{
    $maxID = get_var(V_NUM_SEQUENCES);
    $sql = 'id IN(';
    for ($i = 0; $i < $count; $i++) {
        $sql .= rand(6, $maxID);
        if ($i != $count - 1) {
            $sql .= ',';
        }
    }
    $sql .= ')';
    return $sql;
}
开发者ID:darwinkim,项目名称:onlinesequencer,代码行数:13,代码来源:functions.sequencer.php



注:本文中的get_var函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP get_variable函数代码示例发布时间:2022-05-15
下一篇:
PHP get_values函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap