免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1923 | 回复: 5
打印 上一主题 下一主题

最近练习写Class,这次是MySQL.class.php,请指点 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-04-28 09:20 |只看该作者 |倒序浏览
贴了几处,想得到一些指导,请指点,没有多少写Class的经验,也没多少编码经验,呵呵,多多提点意见和建议,深表感谢
  1. <?php
  2. /*
  3. +-------------------------------------------------------------------+
  4. | OpenPHP.cn Version 1.0 Beta                                       |
  5. +-------------------------------------------------------------------+
  6. | Copyright (c) 2003-2004 The OpenPHP.cn Web Team                   |
  7. +-------------------------------------------------------------------+
  8. | WebSite   : http://www.openphp.cn                                 |
  9. | Time      : Sat, Apr 17 2004 05:36:04 GMT                         |
  10. | Support   : support@openphp.cn                                    |
  11. | Contect   : webmaster@openphp.cn                                  |
  12. | Licence   : http://www.openphp.cn/?license                        |
  13. +-------------------------------------------------------------------+
  14. | Filename  : MySQL.class.php                                       |
  15. | Function  : DB class                                              |
  16. +-------------------------------------------------------------------+
  17. | Authors       : ShenKong <shenkong@openphp.cn>;                    |
  18. | Maintainer    : ShenKong <shenkong@openphp.cn>;                    |
  19. | Create Time   : Sat, Apr 17 2004 05:36:04 GMT                     |
  20. | Last Modify   : Sat, Apr 17 2004 05:36:04 GMT                     |
  21. +-------------------------------------------------------------------+
  22. */

  23.     define("DB_FETCH_ROW", MYSQL_NUM);
  24.     define("DB_FETCH_ASSOC", MYSQL_ASSOC);
  25.     define("DB_FETCH_ARRAY", MYSQL_BOTH);

  26.     class DB
  27.     {
  28.         var $dbHost = null;
  29.         var $dbName = null;
  30.         var $dbUser = null;
  31.         var $dbPswd = null;
  32.         var $conn   = null;
  33.         var $query  = null;
  34.         var $result = null;
  35.         var $errStr = null;
  36.         var $quick  = false;        
  37.         var $sqlStr = array();
  38.         var $sQueries = 0;
  39.         var $uQueries = 0;

  40.         function DB($dsn, $fetchMode = DB_FETCH_ASSOC, $pConn = false)
  41.         {
  42.             $this->;dbHost = $dsn["dbHost"];
  43.             $this->;dbName = $dsn["dbName"];
  44.             $this->;dbUser = $dsn["dbUser"];
  45.             $this->;dbPswd = $dsn["dbPswd"];
  46.             $this->;connect($pConn);
  47.             $this->;selectDB();
  48.             $this->;setFetchMode($fetchMode);
  49.         }

  50.         function connect($pConn = false)
  51.         {
  52.             $pConn ? $connFunc = "mysql_pconnect" : $connFunc = "mysql_connect";
  53.             $this->;conn = @ $connFunc($this->;dbHost, $this->;dbUser, $this->;dbPswd);
  54.             if (!$this->;conn)
  55.             {
  56.                 $this->;errStr = "DataBase Connect False : ($this->;dbHost, $this->;dbUser, ******) !";
  57.                 $this->;dbError();
  58.             }
  59.         }

  60.         function selectDB()
  61.         {
  62.             if ($this->;dbName != null)
  63.             {
  64.                 if(! @ mysql_select_db($this->;dbName, $this->;conn))
  65.                 {
  66.                     $this->;errStr = "DataBase -[$this->;dbName]- does not exist !";
  67.                     $this->;dbError();
  68.                 }
  69.             }
  70.             return false;
  71.         }

  72.         function setFetchMode($fetchMode)
  73.         {
  74.             if(!defined("DB_FETCH_MODE"))
  75.             {
  76.                 define("DB_FETCH_MODE", $fetchMode);
  77.             }
  78.         }

  79.         function query($query, $quick = false)
  80.         {
  81.             $this->;quick = $quick;
  82.             $this->;query = $query;
  83.             $this->;sqlStr[] = $this->;query;
  84.             $this->;quick ? $queryFunc = "mysql_unbuffered_query" : $queryFunc = "mysql_query";
  85.             $this->;result = @ $queryFunc($this->;query, $this->;conn);
  86.             $this->;sQueries++;
  87.             if (!$this->;result)
  88.             {
  89.                 $this->;dbError();
  90.             }
  91.             return $this->;result;
  92.         }

  93.         function simpleQuery($query, $from = 0, $limit = 0)
  94.         {
  95.             if($from)
  96.             {
  97.                 $from = $from . ',';
  98.             }
  99.             if($limit)
  100.             {
  101.                 $query .= ' Limit ' . $from. $limit;
  102.             }
  103.             $this->;query($query);
  104.         }

  105.         function getOne($query)
  106.         {
  107.             //$this->;query = preg_replace("!(select .+ from [^ ]+)(.*)!i", "\\1", $query);
  108.             if (!stristr($query, "limit"))
  109.             {
  110.                 $query .= " Limit 1";
  111.             }
  112.             $this->;query($query, true);
  113.             $row = $this->;fetchRow(DB_FETCH_ROW);
  114.             $this->;free();
  115.             return $row[0];
  116.         }

  117.         function getRow($query, $fetchMode = DB_FETCH_MODE)
  118.         {
  119.             if (!stristr($query, "limit"))
  120.             {
  121.                 $query .= " Limit 1";
  122.             }
  123.             $this->;query($query, true);
  124.             $row = $this->;fetchRow($fetchMode);
  125.             $this->;free();
  126.             return $row;
  127.         }

  128.         function getAll($query, $fetchMode = DB_FETCH_MODE)
  129.         {
  130.             $this->;query($query, true);
  131.             while($rows = @ $this->;fetchRow($fetchMode))
  132.             {
  133.                 $allRows[] = $rows;
  134.             }
  135.             $this->;free();
  136.             return $allRows;
  137.         }

  138.         function update($query)
  139.         {
  140.             $this->;query = $query;
  141.             $this->;sqlStr[] = $this->;query;
  142.             $this->;result = mysql_unbuffered_query($query);
  143.             if (!$this->;result)
  144.             {
  145.                 $this->;errStr = "Update data Error !";
  146.                 $this->;dbError();
  147.             }
  148.             $this->;uQueries++;
  149.             $this->;free();
  150.             return true;
  151.         }

  152.         function getTables()
  153.         {
  154.             $this->;result = @ mysql_list_tables($this->;dbName);
  155.             if (!$this->;result)
  156.             {
  157.                 $this->;errStr = "List database's tables Error !";
  158.                 $this->;dbError();
  159.             }
  160.             $tablesNum = @ mysql_num_rows($this->;result);
  161.             for ($i = 0; $i < $tablesNum; $i++)
  162.             {
  163.                 $tables[] = mysql_tablename($this->;result, $i);
  164.             }
  165.             return $tables;
  166.         }

  167.         function optimize()
  168.         {
  169.             $tables = $this->;getTables();
  170.             print_r($tables);
  171.             $tablesNum = count($tables);
  172.             for($i=0; $i < $tablesNum; $i++)
  173.             {
  174.                 $this->;update("Optimize Table " . $tables[$i]);
  175.                 echo "Optimeze Table " . $tables[$i] . "\n";
  176.             }
  177.         }

  178.         function fetchRow($fetchMode = DB_FETCH_MODE)
  179.         {
  180.             $rows = @ mysql_fetch_array($this->;result, $fetchMode);
  181.             return $rows;
  182.         }

  183.         function seek()
  184.         {
  185.         }

  186.         function rows()
  187.         {
  188.             return @ mysql_num_rows($this->;result);
  189.         }

  190.         function fields()
  191.         {
  192.             return @ mysql_num_fields($this->;result);
  193.         }

  194.         function lastID()
  195.         {
  196.             return @ mysql_insert_id($this->;conn);
  197.         }

  198.         function free()
  199.         {
  200.             @ mysql_free_result($this->;result);
  201.             $this->;result = null;
  202.         }

  203.         function close()
  204.         {
  205.             @ mysql_close($this->;conn);
  206.         }

  207.         function dbError()
  208.         {
  209.             //ob_end_clean();
  210.             $errStr = "Error No : " . mysql_errno() . "\n";
  211.             $errStr .= "Time : " . date("Y-m-d H:i:s") . "\n";
  212.             if (isset($this->;errStr))
  213.             {
  214.                 $errStr .= $this->;errStr . "\n";
  215.             }
  216.             if(isset($this->;query))
  217.             {
  218.                 $errStr .= "Query : " . $this->;query . "\n";
  219.             }
  220.             $errStr .= "Error MSG : " . mysql_error();
  221.             echo nl2br($errStr);
  222.             exit;
  223.         }
  224.     }

  225. ?>;
复制代码

论坛徽章:
0
2 [报告]
发表于 2004-04-28 09:35 |只看该作者

最近练习写Class,这次是MySQL.class.php,请指点

很不错, 比我想的好多了! 我用MYSQL写留言簿, 正想将数据库中的操作分离出来!

论坛徽章:
0
3 [报告]
发表于 2004-04-28 09:41 |只看该作者

最近练习写Class,这次是MySQL.class.php,请指点

我贴一下我写的留言簿, 然后学学你写类的手法可以简化一下我的页面!

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/transitional.dtd">;

  3. <?php
  4. function flag_error ($fieldname, $errstr)
  5.   {
  6.     global $field_with_errors, $errors;
  7.     $field_with_errors[$fieldname] = 1;
  8.     $errors[] = $errstr;
  9.     }

  10. function has_error ($fieldname)
  11.   {
  12.     global $field_with_errors;
  13.     if (isset ($field_with_errors[$fieldname]) )
  14.         return true;
  15.     return false;
  16.    }

  17. $p = & $_POST;
  18. $errors = array();

  19. if (count ($p) >; 0 )
  20.   {
  21.     //error checking
  22.     if ( trim($p['name']) =='')
  23.        flag_error ('name', '请输入您的姓名');

  24.     if ( trim($p['email']) =='')
  25.        flag_error ('email', '请输入您的E-mail');

  26.     if ( trim($p['title']) =='')
  27.        flag_error ('title', '请输入您的留言主题');

  28.     if ( empty($p['content']))
  29.        flag_error ('content', '请输入您的留言内容');

  30.     if ( count ($errors) == 0 )
  31.       {
  32.          $hostname="localhost";
  33.          $user="";
  34.          $passwd="";
  35.          $database="house";
  36.          $dbc=mysql_pconnect($hostname, $user, $passwd) or die ("Sorry, connect database error");

  37.          mysql_select_db($database, $dbc) or die ("Sorry, select database ".$database." error");

  38.          $data=date("Y-m-j h:i:s");
  39.          $name = $p['name'];
  40.          $url = $p['url'];
  41.          $email = $p['email'];
  42.          $title = $p['title'];
  43.          $content = $p['content'];

  44.          $query = sprintf( "insert into guestbook(name, url, email, title, content, data) values('%s','%s','%s','%s','%s','%s')",
  45.          addslashes ( $p['name'] ),
  46.          addslashes ( $p['url'] ),
  47.          addslashes ( $p['email'] ),
  48.          addslashes ( $p['title'] ),
  49.          addslashes ( $p['content'] ), $data);

  50.          mysql_query($query) or die(mysql_error());

  51.          mysql_close($dbc);
  52.          }

  53.     if ( count ($errors) == 0 )
  54.        {
  55.          //success
  56.           print ('<html>;<head>;');
  57.          
  58.             $cssstyle="
  59.                 <style type=\"text/css\">;
  60.                    body { font-family:\"Verdana\", \"Arial\", \"Helvetiva\", \"sans-serif\";
  61.                           font-size:15px; color:#008000; margin-top:20px; margin-right:20px;
  62.                             margin-left:20px; margin-bottom:10px; background-color:#000000; line-height:180%; }
  63.                     p { line-height:180%; }
  64.                     th,td { font-size:15px; }
  65.                     a:link { text-decoration:none; color:#008000; font-size:15px;}
  66.                     a:visited { text-decoration:none; color:#008000; font-size:15px; }
  67.                     a:hover { text-decoration:none; color:#FFFFFF; text-decoration:blink; background-color:#008000; font-size:15px; }
  68.                     a:active { text-decoration:none; color:#008000; font-size:15px; }
  69.                  </style>; ";
  70.           print $cssstyle;

  71.           print ('</head>;<body>;');
  72.           echo "<h3 align=\"center\">;感谢您的留言!本站会根据您的留言提供更个性化的服务。<a href=\"view.php\">;<b>;查看所有留言</b>;<a>;</h3>;";
  73.           echo "<table border=\"1\" width=\"80%\" align=\"center\" cellspacing=\"10\" cellpadding=\"10\">;";
  74.           echo "<tr>;";
  75.           echo "<td width=\"50%\">;<img border=\"0\" src=\"yast_sysadmin.gif\" width=\"48\" height=\"48\" />;您的姓名是:".$name."</td>;";
  76.           echo "<td width=\"50%\">;<img border=\"0\" src=\"time.gif\" width=\"48\" height=\"48\" />;留言日期:".$data."</td>;";
  77.           echo "</tr>;";
  78.           echo "<tr>;";
  79.           echo "<td>;<img border=\"0\" src=\"xfmail.gif\" width=\"48\" height=\"48\" />;E-mail: ".$email."</td>;";
  80.           echo "<td>;<img border=\"0\" src=\"mozillacrystal.gif\" width=\"48\" height=\"48\" />;您的主页:<a href=\"".$p['url']."\" target=_blank>;".$p['url']."</a>;</td>;";
  81.           echo "</tr>;";
  82.           echo "<tr>;";
  83.           echo "<td colspan=\"2\">;";
  84.             echo "<h3 align=\"center\">;<img border=\"0\" src=\"kate.gif\" width=\"48\" height=\"48\" />;".$title."</h3>;<br />;";
  85.           echo "<pre>;".$content."</pre>;";
  86.           echo "</td>;</tr>;</table>;";
  87.           print ('</body>;</html>;');
  88.           exit;
  89.           }
  90.     }
  91. ?>;
  92. <html>;
  93. <head>;
  94. <title>;留言</title>;
  95. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">;
  96. <?php
  97. $cssstyle="
  98. <style type=\"text/css\">;
  99.     body { font-family:\"Verdana\", \"Arial\", \"Helvetiva\", \"sans-serif\";
  100.            font-size:15px; color:#008000; margin-top:20px; margin-right:20px;
  101.            margin-left:20px; margin-bottom:10px; background-color:#000000; line-height:180%; }
  102.     p { line-height:180%; }
  103.     th,td { font-size:15px; }
  104.     a:link { text-decoration:none; color:#008000; font-size:15px;}
  105.     a:visited { text-decoration:none; color:#008000; font-size:15px; }
  106.     a:hover { text-decoration:none; color:#FFFFFF; text-decoration:blink; background-color:#008000; font-size:15px; }
  107.     a:active { text-decoration:none; color:#008000; font-size:15px; }
  108. </style>; ";
  109. print $cssstyle;
  110. ?>;
  111. </head>;

  112. <body>;
  113. <h1 align="center">;留言簿</h1>;
  114. <h3 align="right">;<a href="view.php">;<b>;查看所有留言</b>;<a>;</h3>;

  115.   <?php
  116.     if ( count($errors) >; 0)
  117.      {
  118.         ?>;
  119.         <p class="error">; 您的留言有一些错误, 请对照错误信息重新填写:</p>;
  120.         <ul>;
  121.         <?php
  122.              $n = count ($errors);
  123.              for ( $i=0; $i < $n; $i ++ )
  124.                  print ( "<li class=\"error\">;".$errors[$i]."</li>;<br />;");
  125.          ?>;
  126.         </ur>;
  127.    <?php
  128.        }
  129.     ?>;

  130. <table align="center" width="80%" cellspacing="15">;
  131. <tr>;
  132. <td>;
  133.   <form method="post" action="<?php print( $PHP_SELF); ?>;" class="form">;
  134.   <img border="0" src="yast_sysadmin.gif" width="48" height="48">;姓&&&&名     
  135.     <input type="text" name="name" value="<?php
  136.                                             if (isset ($p['name']))
  137.                                                 print ($p['name']); ?>;" />;
  138.   
  139.   </td>;
  140.   <td>;
  141.   <img border="0" src="xfmail.gif" width="48" height="48">;电子邮件  
  142.      <input type="text" name="email" value="<?php
  143.                                               if (isset ($p['email']))
  144.                                                   print ($p['email']);
  145.                                               ?>;" />;
  146.   
  147.   </td>;
  148.   </tr>;
  149.   <tr>;
  150.    <td>;
  151.    <img border="0" src="kpaint.gif" width="48" height="48">;留言主题
  152.      <input type="text" name="title" value="<?php
  153.                                               if (isset ($p['title']))
  154.                                                   print ($p['title']);
  155.                                                   ?>;" />;
  156.   
  157.   </td>;
  158.   <td>;
  159.   <img border="0" src="mozillacrystal.gif" width="48" height="48">;个人主页
  160.      <input type="text" name="url" value="http://">;
  161.    
  162.    </td>;
  163.    </tr>;
  164.   <tr>;
  165.   <td colspan="2">;
  166.   <table width="80%" cellspacing="20">;
  167.     <tr>;
  168.       <td width="100" align="center">;
  169.         <img border="0" src="kate.gif" width="48" height="48">;<br />;
  170.          留<br />;
  171.          言<br />;
  172.          内<br />;
  173.          容<br />;
  174.       </td>;
  175.       <td >;
  176.          <textarea name="content" rows="10" cols="70" value="<?php
  177.                                                                if (isset ($p['content']))
  178.                                                                    print ($p['content']);
  179.                                                                ?>;">;</textarea>;
  180.       </td>;        
  181.      </tr>;
  182.   </table>;
  183.   </td>;
  184.   </tr>;
  185.   <tr>;
  186.   <td align="center" colspan="2">;
  187.     <br />;
  188.       <input type="submit" name="确定" value="确定">;
  189.      </form>;
  190.   </td>;
  191.   </tr>;
  192. </table>;
  193. </body>;
  194. </html>;
复制代码

      

论坛徽章:
0
4 [报告]
发表于 2004-04-28 09:50 |只看该作者

最近练习写Class,这次是MySQL.class.php,请指点

嘿嘿,我以前也写过一个留言本,比较复杂:)
简单说一下我的类的调用方法:
    $DSN = array(
                    "dbHost" =>; "localhost",
                    "dbName" =>; "openphp",
                    "dbUser" =>; "root",
                    "dbPswd" =>; "",
                );
    $DB = new DB($DSN);
    $row = $DB->;getAll("Select * From open_topics", DB_FETCH_ARRAY);

初始化的时候有三个参数
全局 $fetchMode = DB_FETCH_ASSOC 设定后将不能再调用setFetchMode方法。第三个参数是持久连接

get*方法第一个参数是SQL语句,getOne和getRow方法可能不需要Limit,get*方法直接返回结果集
如果你想自己循环结果集,可以这样:
    $DB->;query($query);
    while ($rows = $DB->;fetchRow())
    {
        $row[] = $rows;
    }

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
5 [报告]
发表于 2004-04-28 13:31 |只看该作者

最近练习写Class,这次是MySQL.class.php,请指点

呵呵,跟我写的第一个类差不多啊。超强!什么都能干!什么都干!
是不是通病??

论坛徽章:
0
6 [报告]
发表于 2004-04-28 14:40 |只看该作者

最近练习写Class,这次是MySQL.class.php,请指点

那应该怎么写类呢?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP