当前位置: 首页>>代码示例>>PHP>>正文


PHP DbConn::table_select方法代码示例

本文整理汇总了PHP中DbConn::table_select方法的典型用法代码示例。如果您正苦于以下问题:PHP DbConn::table_select方法的具体用法?PHP DbConn::table_select怎么用?PHP DbConn::table_select使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DbConn的用法示例。


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

示例1: parentinfo_select_affect

 function parentinfo_select_affect($arr, $limit)
 {
     $str = DbConn::table_select('parentinfo', $arr, $limit);
     $this->con = DbConn::initDb();
     mysql_query($str, $this->con);
     return mysql_affected_rows($this->con);
 }
开发者ID:bmchun,项目名称:sunset,代码行数:7,代码来源:ParentInfo.php

示例2: check

 public function check()
 {
     $this->con = DbConn::initDb();
     $table = 'admin';
     $arr = array('name' => $this->name, 'password' => $this->password);
     $str = DbConn::table_select('admin', $arr);
     $result = mysql_query($str, $this->con);
     return mysql_fetch_array($result);
 }
开发者ID:bmchun,项目名称:sunset,代码行数:9,代码来源:adminCheck.php

示例3: userinfo_select

 function userinfo_select($arr, $limit)
 {
     $str = DbConn::table_select('userinfo', $arr, $limit);
     $this->con = DbConn::initDb();
     return mysql_query($str, $this->con);
 }
开发者ID:bmchun,项目名称:sunset,代码行数:6,代码来源:UserInfo.php

示例4: token_select

 function token_select($arr, $limit)
 {
     $str = DbConn::table_select('token', $arr, $limit);
     $this->con = DbConn::initDb();
     return mysql_query($str, $this->con);
 }
开发者ID:bmchun,项目名称:sunset,代码行数:6,代码来源:Token.php

示例5: keyword_select

 function keyword_select()
 {
     $str = DbConn::table_select('keyword', null);
     $this->con = DbConn::initDb();
     return mysql_query($str, $this->con);
 }
开发者ID:bmchun,项目名称:sunset,代码行数:6,代码来源:KeyWord.php

示例6: subject_select

 function subject_select($arr, $limit)
 {
     $str = DbConn::table_select('Subject', $arr, $limit);
     $this->con = DbConn::initDb();
     return mysql_query($str, $this->con);
 }
开发者ID:bmchun,项目名称:sunset,代码行数:6,代码来源:Subject.php


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