當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Versions::get_select_option方法代碼示例

本文整理匯總了PHP中Versions::get_select_option方法的典型用法代碼示例。如果您正苦於以下問題:PHP Versions::get_select_option方法的具體用法?PHP Versions::get_select_option怎麽用?PHP Versions::get_select_option使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Versions的用法示例。


在下文中一共展示了Versions::get_select_option方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: setvers

 /**
  * 功能號:1012
  * 設置版本
  * */
 public function setvers()
 {
     $id = intval(Core::$_dataFilter->valueCheck(Core::get("id"), "Require,Integer", "id不能為空,數據非法!"));
     $code = Core::$_dataFilter->valueCheck(Core::get("code"), "Limit", "code非法", false, 13);
     if ($code && !Core::checkcode($code)) {
         Core::json_error('code 不合法');
     } elseif ($code) {
         $module = Core::get('module');
         $vers = Core::get("vers");
         $data = $this->getOne('code=?', $code);
         if ($data) {
             $code = $data->id;
             $vch = new Vers_channel();
             if ($module) {
                 foreach ($module as $k => $v) {
                     if ($vers[$k]) {
                         $version = $vch->getMOne($code, $v);
                         if ($version) {
                             $vch->update($code, $vers[$k], $v, $version[0]['id']);
                         } else {
                             $vch->add($code, $vers[$k], $v);
                         }
                     } else {
                         $vch->delete($code, $v);
                     }
                 }
             }
             $mess = '版本設置成功';
             Core::jump($mess, Core::get_url('/channel/clist'));
         }
     }
     $data = $this->getOne('id=?', $id);
     if ($data) {
         $code = $data->id;
         $vch = new Vers_channel();
         if ($code) {
             $modules = bModules::getList('enable=?', array(1));
             if ($modules) {
                 $ver = new Versions();
                 $vers_temp = '';
                 foreach ($modules as $row) {
                     $vers_temp .= '<li><span style="width:180px;">模塊:' . $row->code . '</span><input type="hidden" name="module[]" value="' . $row->id . '"></li>';
                     $version = $vch->getMOne($code, $row->id);
                     $option = $ver->get_select_option($version[0]['ver'], 10, $row->id);
                     $vers_temp .= '<li><span style="width:150px;">更新版本:</span><select name="vers[]">' . $option . '</select></li>';
                 }
             }
         }
     } else {
         $mess = '沒有相關頻道';
         Core::jump($mess, Core::get_url('/channel/clist'));
     }
     //實例化模板
     $tp = PHP_Templates::factory();
     //設置模板文件
     $tp->setFiles('setversions');
     if (!empty($code)) {
         $tp->code = $data->code;
         $tp->option = $vers_temp;
     }
     //輸出頁麵
     $tp->execute();
     //釋放模板變量
     unset($tp);
 }
開發者ID:infi000,項目名稱:geek,代碼行數:69,代碼來源:user.class.php


注:本文中的Versions::get_select_option方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。