继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

php对于数据库的基本用法

pachox1a
关注TA
已关注
手记 1
粉丝 0
获赞 72

This is the first time I have been before writing in the school laboratory which is very strange is that I have been before writing C, including the development of microcontroller applications, but a chance I was exposed to Python and PHP, I found it very interesting, you can quickly achieve some small programming your satisfaction, this is also the reason I love programming. This time I share a PHP for the basic use of the database code hope you can get something that be good for u!加粗文字

<?php
/**

  • 连接数据库
    */
    function connect(){
    $link=mysql_connect(DB_HOST,DB_USER,DB_PWD) or die("数据库连接失败Error:".mysql_errno().":".mysql_error());
    mysql_set_charset(DB_CHARSET);
    mysql_select_db(DB_DBNAME) or die("指定数据库打开失败");
    return $link;
    }

/**

  • 完成记录插入的操作
    */
    function insert($table,$array){
    $keys=join(",",array_keys($array));
    $vals="'".join("','",array_values($array))."'";
    $sql="insert {$table}($keys) values({$vals})";
    mysql_query($sql);
    return mysql_insert_id();
    }
    //update imooc_admin set username='king' where id=1
    /**
  • 记录的更新操作
    */
    function update($table,$array,$where=null){
    foreach($array as $key=>$val){
    if($str==null){
    $sep="";
    }else{
    $sep=",";
    }
    $str.=$sep.$key."='".$val."'";
    }
    $sql="update {$table} set {$str} ".($where==null?null:" where ".$where);
    $result=mysql_query($sql);
    //var_dump($result);
    //var_dump(mysql_affected_rows());exit;
    if($result){
    return mysql_affected_rows();
    }else{
    return false;
    }
    }

/**

  • 删除记录
    */
    function delete($table,$where=null){
    $where=$where==null?null:" where ".$where;
    $sql="delete from {$table} {$where}";
    mysql_query($sql);
    return mysql_affected_rows();
    }

/*
得到指定一条记录
*/
function fetchOne($sql,$result_type=MYSQL_ASSOC){
$result=mysql_query($sql);
$row=mysql_fetch_array($result,$result_type);
return $row;
}

/**

  • 得到结果集中所有记录 ...
    */
    function fetchAll($sql,$result_type=MYSQL_ASSOC){
    $result=mysql_query($sql);
    while(@$row=mysql_fetch_array($result,$result_type)){
    $rows[]=$row;
    }
    return $rows;
    }

/**

  • 得到结果集中的记录条数
    */
    function getResultNum($sql){
    $result=mysql_query($sql);
    return mysql_num_rows($result);
    }

/**

  • 得到上一步插入记录的ID号
    */
    function getInsertId(){
    return mysql_insert_id();
    }

加粗文字

打开App,阅读手记
8人推荐
发表评论
随时随地看视频慕课网APP

热门评论

电商后台实践课的代码

查看全部评论