本文整理汇总了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);
}
示例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);
}
示例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);
}
示例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);
}
示例5: keyword_select
function keyword_select()
{
$str = DbConn::table_select('keyword', null);
$this->con = DbConn::initDb();
return mysql_query($str, $this->con);
}
示例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);
}