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


PHP Zend_Filter_Input::getInt方法代碼示例

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


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

示例1: usunAction

 /**
  * Usuw� dan� ankiet�
  */
 public function usunAction()
 {
     $post = new Zend_Filter_Input($_POST);
     $poll = new Ankiety();
     $db = $poll->getAdapter();
     $where = $db->quoteInto('id_ankieta = ?', $post->getInt('ankieta_id'));
     $rows_affected = $poll->delete($where);
     $this->_redirect('/ankieter');
 }
開發者ID:BackupTheBerlios,項目名稱:phppool,代碼行數:12,代碼來源:AnkieterController.php

示例2: addSoftAction

 public function addSoftAction()
 {
     $post = new Zend_Filter_Input($_POST);
     $soft = new Oprogramowanie();
     $data = array('nazwa' => $post->getRaw('oprogramowanie_nazwa'), 'producent' => $post->getRaw('oprogramowanie_producent'), 'wersja' => $post->getRaw('oprogramowanie_wersja'), 'nr_seryjny' => $post->getRaw('oprogramowanie_numer'), 'klucz_licencji' => $post->getRaw('oprogramowanie_klucz'), 'termin_licencji' => $post->getRaw('oprogramowanie_termin'), 'typ_licencji' => $post->getRaw('oprogramowanie_typ'), 'ilosc_stanowisk' => $post->getRaw('oprogramowanie_ilosc'), 'url_scan' => $post->getRaw('oprogramowanie_url'));
     try {
         $id = $soft->insert($data);
         $this->_forward('index', 'index');
     } catch (Soft_Validation_Exception $e) {
         $this->_forward('index', 'index', array('validationSoftError' => $e->getMessage()));
     }
     $komOpr = new KompOpr();
     $data = array('id_komputer' => $post->getInt('komputery'), 'id_oprogramowanie' => $post->getRaw('oprogramowanie_nazwa'));
     try {
         $komOpr->insert($data);
         $this->_forward('index', 'index');
     } catch (Soft_Validation_Exception $e) {
         $this->_forward('index', 'index', array('validationSoftError' => $e->getMessage()));
     }
 }
開發者ID:BackupTheBerlios,項目名稱:umlrecord,代碼行數:20,代碼來源:IndexController.php

示例3: testGetInt

 /**
  * @deprecated since 0.8.0
  * @return void
  */
 public function testGetInt()
 {
     $source = array('123');
     $filter = new Zend_Filter_Input($source);
     $this->assertEquals(123, $filter->getInt(0));
     $this->assertFalse($filter->getInt(1));
 }
開發者ID:jorgenils,項目名稱:zend-framework,代碼行數:11,代碼來源:InputTest.php

示例4: exportAction

 /**
  * Tworzony jest w locie plik exela i wysyłany jest odpowiedni nagłówek (header)
  * do przeglądarki internetowej tak że pojawia się okienko dialogowe (ie,opera, itd)
  * z zapytaniem co chcemy zrobić danym plikiem (otworzyć, zapisać)
  * 
  * Akcja dla	:http://raport/export
  * i			:http://raport/export/ankieta/#id
  */
 public function exportAction()
 {
     $post = new Zend_Filter_Input($_POST);
     $poll = new Ankiety();
     $db = $poll->getAdapter();
     $pollId = $this->_getParam('ankieta');
     if (empty($pollId)) {
         $pollId = $post->getInt('ankieta_id');
     }
     header("Content-Type: application/vnd.ms-excel");
     header("Content-Disposition: attachment; filename=ank_{$pollId}.xls");
     header("Pragma: no-cache");
     header("Expires: 0");
     echo $this->view->render('/raport/raportExport.php');
     echo plCharset($this->tabelarycznyAction($excel = 1, $id_ankieta = $pollId), UTF8_TO_ISO88592);
 }
開發者ID:BackupTheBerlios,項目名稱:phppool,代碼行數:24,代碼來源:RaportController.php


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