PHP物件導向練習2

來源:互聯網
上載者:User

標籤:res   more   構造   login   new   pass   roo   http   span   

思路:建構函式完成資料庫連接,增刪改一個方法,查詢一條記錄一個方法,查詢多條一個方法,sql執行失敗則返回提示,並交出sql語句方便查錯

代碼:

<?
class dbcontroll{

private $links;
private $sql;

public function __construct($host,$user,$password,$db){

$con = mysql_connect($host,$user,$password);
if(!$con){

echo ‘主機串連資訊錯誤!‘;die;
}
$this->links = mysql_select_db($db,$con);
if(!$this->links){
echo ‘資料庫連接錯誤!‘;die;
}
}
//增刪改
public function query($sql){

$res = mysql_query($sql);
if(!$res){
echo ‘sql執行錯誤‘.$sql;
}else{
echo ‘執行成功!‘;
}

}
//查詢多條資料
public function getmore($sql){
$res = mysql_query($sql);
if(!$res){
echo ‘sql執行錯誤‘.$sql;
}else{
$arr = array();
while($row = mysql_fetch_row($res)){

array_push($arr,$row);

}
return $arr;
}
}
//查詢一條資料
public function find($sql){

$res = mysql_query($sql);
if(!$res){
echo ‘sql執行錯誤‘.$sql;
}else{

while($row = mysql_fetch_row($res)){

return $row;
}
}
}
}
$sql = "select * from login where id = 3";
$db = new dbcontroll(‘localhost‘,‘root‘,‘root‘,‘login‘);
$a = $db->find($sql);
var_dump($a);

?>

 

PHP物件導向練習2

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.