本文整理匯總了PHP中SqlHelper::close_conn方法的典型用法代碼示例。如果您正苦於以下問題:PHP SqlHelper::close_conn方法的具體用法?PHP SqlHelper::close_conn怎麽用?PHP SqlHelper::close_conn使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SqlHelper
的用法示例。
在下文中一共展示了SqlHelper::close_conn方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getFenyePage
/**
* @param $fenyePage
*/
function getFenyePage($fenyePage)
{
$sqlhelper = new SqlHelper();
$sql1 = "select * from emp limit " . ($fenyePage->pageNow - 1) * $fenyePage->pageSize . "," . $fenyePage->pageSize;
echo "當前頁:" . $fenyePage->pageNow . "<br/>";
echo $sql1;
$sql2 = "select count(id) from emp";
$sqlhelper->exectue_dql_fenye($sql1, $sql2, $fenyePage);
$sqlhelper->close_conn();
}
示例2: checkAdmin
public function checkAdmin($id, $password)
{
$sql = "select password,name from admin where id={$id}";
$sqlhelper = new SqlHelper();
$res = $sqlhelper->execute_dql($sql);
if ($row = mysqli_fetch_assoc($res)) {
if (md5($password) == $row['password']) {
return true;
}
}
mysqli_free_result($res);
$sqlhelper->close_conn();
return false;
}