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


PHP CTable::select方法代碼示例

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


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

示例1: get_option

	static function get_option($selectedvalue, $tablename="pays", $colvaluename="id", $colvuename="nom", $where=1) {
		   $option = "";
		   $result = CTable::select($colvaluename . " , " . $colvuename, $tablename, $where, $colvuename); 
		   while($array = mysql_fetch_array($result)) {
		   		$selected = CForm::get_selected($selectedvalue, $array[$colvaluename]);
		   		$option = $option . "<option value='" . $array[$colvaluename] . "'" . $selected . ">" . ucfirst(utf8_encode(substr($array[$colvuename], 0, 25))) . "</option>\n";
		   }
		   return $option;
	}	
開發者ID:rakotobe,項目名稱:Rakotobe,代碼行數:9,代碼來源:CFormPays.php

示例2: get_option

	static function get_option($selectedvalue, $tablename, $colvaluename="id", $colvuename="nom", $where=1, $order = null) {
		   $option = "";
	 	if(!$order) {
		   		$order = $colvuename;
		   }
		   $result = CTable::select($colvaluename . " , " . $colvuename, $tablename, $where, $order); 
		   while($array = mysql_fetch_array($result)) {
		   		$selected = CForm::get_selected($selectedvalue, $array[$colvaluename]);
		   		$option = $option . "<option value='" . $array[$colvaluename] . "'" . $selected . ">" . $array[$colvuename] . "</option>\n";
		   }
		   return $option;
	}	
開發者ID:rakotobe,項目名稱:Rakotobe,代碼行數:12,代碼來源:CForm.php

示例3: fetchAll

    static function fetchAll($select="*", $where="1", $order="mlt_zMail, mlt_zDateCreation") {
        
        $oRes = parent::select($select, 'moul_tables', $where, COrder::formate($order));
 
        $toResults = array() ;
        if ($oRes){
            while ($toRes = mysql_fetch_assoc($oRes)){
                $toResults[] = $toRes ;
            }
        }

        return $toResults ;

    }
開發者ID:rakotobe,項目名稱:Rakotobe,代碼行數:14,代碼來源:CTableMouTables.php

示例4: select

	static function select($select="*", $where="1", $order="rang") {
		return parent::select($select, 'categorie_user', $where, COrder::formate($order));
	}
開發者ID:rakotobe,項目名稱:Rakotobe,代碼行數:3,代碼來源:CTableCategorie.php

示例5: select

	static function select($select="*", $where, $order="id") {
		if(empty($order)) $order = "id";
		return parent::select($select, 'rdvContact', $where, COrder::formate($order));
	}
開發者ID:rakotobe,項目名稱:Rakotobe,代碼行數:4,代碼來源:contact.php

示例6: select

	static function select($select="*", $where="1", $order="id") {
		if(empty($order)) $order = "id";
//		return parent::select($select, 'gr_rdv_user', $where, COrder::formate($order));
		return parent::select($select, 'gr_rdv', $where, COrder::formate($order));
	}
開發者ID:rakotobe,項目名稱:Rakotobe,代碼行數:5,代碼來源:CTableGrRdv.php

示例7: select

	static function select($select="*", $where="1", $order="rang") {
		return parent::select($select, 'domaine', $where, $order="rang");
	}
開發者ID:rakotobe,項目名稱:Rakotobe,代碼行數:3,代碼來源:CTableDomaine.php

示例8: select

	static function select($select="*", $where="1", $order="nom") {
		return parent::select($select, 'departement', $where, $order);
	}
開發者ID:rakotobe,項目名稱:Rakotobe,代碼行數:3,代碼來源:CTableDepartement.php

示例9: select

	static function select($select="*", $where="1", $order="nom_com"){
		return parent::select($select, 'commune', $where, COrder::formate($order));
	}
開發者ID:rakotobe,項目名稱:Rakotobe,代碼行數:3,代碼來源:CTableCommune.php

示例10: select

	static function select($select="*", $where="1", $order="id desc") {
		if(empty($order)) $order = "id desc";
		return parent::select($select, 'user', $where, COrder::formate($order));
	}
開發者ID:rakotobe,項目名稱:Rakotobe,代碼行數:4,代碼來源:CTableUser.php


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