免费注册 查看新帖 |

Chinaunix

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

邋里邋遢一个类,URL检测兼无限级导航,没多大用处和扩展性 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-04-20 14:45 |只看该作者 |倒序浏览
嘿嘿,不会写类,就是几个函数拼合一起的,客观性不是很强,有时间的朋友PP了,上...

  1. <?php
  2. /*
  3. +----------------------------------------------------------------------+
  4. |          Copyright (C) 2004 OpenPHP.cn . All rights reserved         |
  5. |                      本文档由深空创建于2004.03.13                    |
  6. |                 版权所有,并保留所有版权,不得修改传播               |
  7. |                         http://www.openphp.cn                        |
  8. |                            kim@openphp.cn                            |
  9. +----------------------------------------------------------------------+
  10. */

  11. /*
  12. +----------------------------------------------------------------------+
  13. |   getweburl.class.php 站点 URL 事件类文件                            |
  14. +----------------------------------------------------------------------+
  15. */


  16.     class GetWebURL
  17.     {
  18.         var $level      = null;         //  分类级别
  19.         var $method     = null;
  20.         var $id_real    = false;        //
  21.         var $cid_real   = false;
  22.         var $id_value   = null;         //  URL 取得的 ID 值
  23.         var $cid_value  = null;         //  URL 取得的 cID 值
  24.         var $page_value = null;
  25.         var $member_title = null;
  26.         var $id         = "id";         //  内容数据表唯一表示符名
  27.         var $cid        = "cid";        //  分类数据表唯一表示符名
  28.         var $page       = "page";       //  操作名
  29.         var $post       = array();
  30.         var $get        = array();
  31.         //  个数据表对应关系=>;表名、类表名、类 ID 名、标题名
  32.         var $page_array = array(
  33.                                     "main"       =>; array(),
  34.                                     "news"       =>; array(
  35.                                                               "table"           =>; "news",
  36.                                                               "class_table"     =>; "class_news",
  37.                                                               "class_id_name"   =>; "class_id",
  38.                                                               "title_name"      =>; "title",
  39.                                                          ),
  40.                                     "soft"       =>; array(
  41.                                                               "table"           =>; "softs",
  42.                                                               "class_table"     =>; "class_soft",
  43.                                                               "class_id_name"   =>; "class_id",
  44.                                                               "title_name"      =>; "title"
  45.                                                          ),
  46.                                     "article"    =>; array(
  47.                                                               "table"           =>; "articles",
  48.                                                               "class_table"     =>; "class_article",
  49.                                                               "class_id_name"   =>; "class_id",
  50.                                                               "title_name"      =>; "title"
  51.                                                          ),
  52.                                     "forum"      =>; array(
  53.                                                               "table"           =>; "topics",
  54.                                                               "class_table"     =>; "class_forum",
  55.                                                               "class_id_name"   =>; "class_id",
  56.                                                               "title_name"      =>; "title"
  57.                                                          ),
  58.                                     "user"       =>; array(
  59.                                                               "table"           =>; "user",
  60.                                                               "class_table"     =>; "group",
  61.                                                               "class_id_name"   =>; "group_id",
  62.                                                               "title_name"      =>; "username"
  63.                                                          ),
  64.                                 );

  65.         function GetWebURL($method = "get")
  66.         {
  67.             $this->;method = $method;    //  取得操作方式: post || get
  68.             $this->;get = OpenData::GetData("", "get");
  69.             $this->;post = OpenData::GetData("", "post");
  70.             foreach ($this->;get as $key =>; $value)
  71.             {
  72.                 $get[$key] = $value;
  73.             }
  74.             foreach ($this->;post as $key =>; $value)
  75.             {
  76.                 $post[$key] = $value;
  77.             }
  78.             $this->;page_value = isset($get[$this->;page]) ? $get[$this->;page] : false;
  79.             $this->;cid_value  = isset(${$this->;method}[$this->;cid]) ? ${$this->;method}[$this->;cid] : false;
  80.             $this->;id_value   = isset(${$this->;method}[$this->;id]) ? ${$this->;method}[$this->;id] : false;
  81.             $this->;cid_value   = OpenData::GetData($this->;cid, $this->;method);
  82.             $this->;id_value    = OpenData::GetData($this->;id, $this->;method);
  83.         }
  84. /*
  85.         function ChangeMethod($method = "get")
  86.         {
  87.             $this->;method = $method;
  88.         }
  89. */
  90.         function GetWebPage()
  91.         {
  92.             $open_page = $this->;page_value;            
  93.             if (empty($open_page))
  94.             {
  95.                 return $open_page = "main";
  96.             }
  97.             elseif (array_key_exists($open_page, $this->;page_array))
  98.             {
  99.                 return $open_page;
  100.             }
  101.             else
  102.             {
  103.                 return $open_page = "main";
  104.             }
  105.         }

  106.         function GetWebId()
  107.         {
  108.             if ($this->;GetWebPage() == "main")
  109.             {
  110.                 return false;
  111.             }
  112.             $open_id = $this->;id_value;
  113.             if (empty($open_id))
  114.             {
  115.                 return false;
  116.             }
  117.             return $open_id;
  118.         }

  119.         function GetWebCid()
  120.         {
  121.             if ($this->;GetWebPage() == "main")
  122.             {
  123.                 return false;
  124.             }
  125.             $cid = $this->;cid;
  126.             $open_cid = $this->;cid_value;
  127.             if (empty($open_cid))
  128.             {
  129.                 return false;
  130.             }
  131.             return $open_cid;
  132.         }

  133.         function GetTable()
  134.         {
  135.             return $this->;page_array[$this->;GetWebPage()]["table"];
  136.         }

  137.         function GetClassTable()
  138.         {
  139.             return $this->;page_array[$this->;GetWebPage()]["class_table"];
  140.         }

  141.         function GetClassIdName()
  142.         {
  143.             return $this->;page_array[$this->;GetWebPage()]["class_id_name"];
  144.         }

  145.         function GetTitleName()
  146.         {
  147.             return $this->;page_array[$this->;GetWebPage()]["title_name"];
  148.         }

  149.         function CheckId()
  150.         {
  151.             global $DB;
  152.             if (!$id = $this->;GetWebId())
  153.             {
  154.                 return false;
  155.             }
  156.             $table = $this->;GetTable();
  157.             $class_table = $this->;GetClassTable();
  158.             $query = "Select
  159.                         m.id, m.title, c.level, c.id
  160.                       From
  161.                         " . PRE . $table . " as m
  162.                       Left Join " . PRE . $class_table . " as c
  163.                         On m.class_id = c.id
  164.                       Where m.id = '$id'";
  165.             if ($row = $DB->;getRow($query, DB_FETCHMODE_ORDERED))
  166.             {
  167.                 DB_showError($row);
  168.                 $this->;id_real = true;
  169.                 $this->;member_title = $row;
  170.                 $this->;level = $row[2];
  171.                 $this->;cid_value = $row[3];
  172.                 $this->;cid_real = false;
  173.                 return $row[0];
  174.             }
  175.             return false;
  176.         }

  177.         function CheckCid()
  178.         {
  179.             global $DB;
  180.             if (!$cid = $this->;GetWebCid())
  181.             {
  182.                 return false;
  183.             }
  184.             $table = $this->;GetClassTable();
  185.             $query = "Select
  186.                         id, level
  187.                       From
  188.                         " . PRE . $table . "
  189.                       Where id = '$cid'";
  190.             if ($class_row = $DB->;getRow($query, DB_FETCHMODE_ASSOC))
  191.             {
  192.                 DB_showError($class_row);
  193.                 $this->;level = $class_row['level'];
  194.                 $this->;cid_real = true;
  195.                 return $class_row['id'];
  196.             }

  197.             return false;
  198.         }

  199.         function GetRealCid()
  200.         {
  201.             if ($id = $this->;CheckId())
  202.             {
  203. /*
  204.                 global $DB;
  205.                 $class_id_name = $this->;GetClassIdName();
  206.                 $table = $this->;GetTable();
  207.                 $query = "Select
  208.                             $class_id_name, level
  209.                           From
  210.                             " . PRE . $table . "
  211.                           Where id = $id";
  212.                 $class_row = $DB->;getRow($query, DB_FETCHMODE_ASSOC);
  213.                 DB_showError($class_row);
  214. //                $this->;cache_cid = $class_row['cache_id'];
  215.                 $this->;level     = $class_row['level'];
  216.                 return $class_row['class_id'];*/
  217.                 return $this->;cid_value;
  218.             }
  219.             else
  220.             {
  221.                 return $this->;CheckCid();
  222.             }
  223.         }

  224.         function GetClassTitle()
  225.         {
  226.             global $DB;
  227.             if (!$open_cid = $this->;GetRealCid())
  228.             {
  229.                 return false;
  230.             }
  231. /*
  232.             $query = "Select
  233.                         level
  234.                       From
  235.                         " . PRE .$this->;GetClassTable() . "
  236.                       Where id = " . $open_cid;
  237.             $level = $DB->;getOne($query);
  238.             DB_showError($level);
  239. */

  240.             $cid = explode(",", $this->;level);
  241.             $id_num = count($cid);
  242.             //  这里的 SQL 查询好像可以优化,只是暂时没有想到,做个标记
  243.             $query = "Select
  244.                         id, class_name
  245.                       From
  246.                         " . PRE .$this->;GetClassTable() . "
  247.                       Where id in (" . $this->;level . ")";
  248.             $title_array = $DB->;getAll($query, DB_FETCHMODE_ORDERED);
  249.             DB_showError($title_array);
  250.             array_multisort($cid,$title_array);
  251.             
  252. /*
  253.             for ($i = 0; $i < $id_num; $i++)
  254.             {
  255.                 $query = "Select
  256.                             id, class_name
  257.                           From
  258.                             " . PRE .$this->;GetClassTable() . "
  259.                           Where id = " . $cid[$i];
  260.                 $title_array[$i] = $DB->;getRow($query, DB_FETCHMODE_ORDERED);
  261.                 DB_showError($title_array[$i]);
  262.             }
  263. */
  264.             return $title_array;
  265.         }

  266.         function GetMemberTitle()
  267.         {
  268.             global $DB;
  269.             if (!$open_id = $this->;CheckId())
  270.             {
  271.                 return false;
  272.             }
  273. /*
  274.             $title = $this->;GetTitleName();
  275.             $table = $this->;GetTable();
  276.             $query = "Select
  277.                         id, $title
  278.                       From
  279.                         " . PRE . $table . "
  280.                       Where id = $open_id";
  281.             $member = $DB->;getRow($query, DB_FETCHMODE_ORDERED);
  282.             DB_showError($member);
  283.             */
  284.             return $this->;member_title;
  285.         }

  286.         function WebTitleArray()
  287.         {
  288.             $class_title  = $this->;GetClassTitle();
  289.             $member_title = $this->;GetMemberTitle();
  290.             if (!empty($class_title) && !empty($member_title))
  291.             {
  292.                 $member_title = array($member_title);
  293.                 return array_merge($class_title, $member_title);
  294.             }
  295.             elseif (!empty($class_title))
  296.             {
  297.                 return $class_title;
  298.             }
  299.             return false;
  300.         }

  301.         function GetTextTitle($front = "y", $link = " - ")
  302.         {
  303.             $title = isset($title) ? $title : "";
  304.             if (!$web_title_array = $this->;WebTitleArray())
  305.             {
  306.                 return false;
  307.             }
  308.             $num = count($web_title_array);
  309.             for ($i = 0; $i < $num; $i++)
  310.             {
  311.                 if ($i == 0 && $front != "y")
  312.                 {
  313.                     $title = $web_title_array[$i][1];
  314.                 }
  315.                 else
  316.                 {
  317.                     $title .= $link . $web_title_array[$i][1];
  318.                 }
  319.             }
  320.             return $title;
  321.         }

  322.         function GetLinkTitle($front = "y", $link = " <span style=\"color: #000000;\">;&</span>;& ")
  323.         {
  324.             $title = isset($title) ? $title : "";
  325.             if (!$class_title_array = $this->;GetClassTitle())
  326.             {
  327.                 return false;
  328.             }
  329.             $class_num = count($class_title_array);
  330.             for ($i = 0; $i < $class_num; $i++)
  331.             {
  332.                 if ($i == 0 && $front != "y")
  333.                 {
  334.                     $title = "<a href=\"" . MAIN_PAGE . "?" . $this->;page . "=" . $this->;GetWebPage() . "&cid=" . $class_title_array[$i][0] . "\">;" . $class_title_array[$i][1] . "</a>;";
  335.                 }
  336.                 else
  337.                 {
  338.                     $title .= $link . "<a href=\"" . MAIN_PAGE . "?" . $this->;page . "=" . $this->;GetWebPage() . "&cid=" . $class_title_array[$i][0] . "\">;" . $class_title_array[$i][1] . "</a>;";
  339.                 }               
  340.             }
  341.             if (!$member_title = $this->;GetMemberTitle())
  342.             {
  343.                 return $title;
  344.             }
  345.             else
  346.             {
  347.                 return $title .= $link . "<a href=\"" . MAIN_PAGE . "?" . $this->;page . "=" . $this->;GetWebPage() . "&id=" . $member_title[0] . "\">;" . $member_title[1] . "</a>;";
  348.             }
  349.         }
  350.     }

  351. ?>;
复制代码

论坛徽章:
0
2 [报告]
发表于 2004-04-20 14:46 |只看该作者

邋里邋遢一个类,URL检测兼无限级导航,没多大用处和扩展性

写错了,是可观性不强,有几个属性没多大用处,呵呵

论坛徽章:
0
3 [报告]
发表于 2004-04-20 15:14 |只看该作者

邋里邋遢一个类,URL检测兼无限级导航,没多大用处和扩展性

唯一的缺点就是扩展性差了点点,不过可以借鉴的地方还是很多的
longnetpro 该用户已被删除
4 [报告]
发表于 2004-04-20 22:35 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
5 [报告]
发表于 2004-04-20 22:57 |只看该作者

邋里邋遢一个类,URL检测兼无限级导航,没多大用处和扩展性

好久没来了,最近超忙。
上面longnetpro都说了我就不多说了,代码我没有细看,觉得这个类超厉害什么都管,酷仔。

论坛徽章:
0
6 [报告]
发表于 2004-04-21 13:38 |只看该作者

邋里邋遢一个类,URL检测兼无限级导航,没多大用处和扩展性

多谢指点
这是我写的第一个"Class"
第一次嘛,我也意识到不少缺点,所以应该说成函数聚合比较妥当
完成功能主要是URL检测还有连代需要的数据库内容一块提取出来了.
确实得好好看看别人写的代码,呵呵,最近在寻找OOP的资料看,因为以前都是结构化的思想.我也不叫喜欢结构化的.
贴这个类我的原意是想用一个类就实现整站URL的检测,页面定位,缓存ID的分类,事实上和我的数据库设计结合,已经做到了..无限级分类导航-----结合Smarty后如果缓存了,那么整个页面的数据库查询就是类中的那个三句中的其中两句,也就是一个页面两次查询.

不过,真是感谢楼上的指教,说这个是类确实有点玷污类了-_#
尝试才能进步,所以这次失败了我重写了,我昨天就在想先做一个URL queries遍历, 再来一个Check , 最后才导入页面指向

我现在还不知道怎么引入一个外部变量,如果一个类共同使用一个外部变量,不知道如何引入...唉,比如下面我写的这个"类"...还是引号一下,因为不能确定这是什么玩意,呵呵,后来被我废弃了,直接用了常量代替...因为我实在不知道在其他特定类中怎么引入下面的表参数:

  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  : Member.class.php                                      |
  15. | Function  : The Member's config class                             |
  16. +-------------------------------------------------------------------+
  17. | Authors       : ShenKong <webmaster@openphp.cn>;                   |
  18. | Maintainer    : ShenKong <webmaster@openphp.cn>;                   |
  19. | Create Time   : Sun, Apr 18 2004 13:52:37 GMT                     |
  20. | Last Modify   : Sun, Apr 18 2004 13:52:37 GMT                     |
  21. +-------------------------------------------------------------------+
  22. */

  23.     /**
  24.      * Foreach the DB tables .
  25.      *
  26.      * @name     : Table
  27.      * @author   : ShenKong <shenkong@openphp.cn>;
  28.      * @version  : v 1.0
  29.      * @Created  : Sun, Apr 18 2004 13:52:37 GMT
  30.      * @Modified : Sun, Apr 18 2004 13:52:37 GMT
  31.      * @category : Database
  32.      */
  33.     class Table
  34.     {
  35.         /**
  36.          * Member Mod : User's information table
  37.          *
  38.          * @var     string
  39.          * @access  public
  40.          */
  41.         var $uTable;

  42.         /**
  43.          * Download Mod : Software's detailed info table
  44.          *
  45.          * @var     string
  46.          * @access  public
  47.          */
  48.         var $sTable;

  49.         /**
  50.          * Article Mod : Article's detailed info table
  51.          *
  52.          * @var     string
  53.          * @access  public
  54.          */
  55.         var $aTable;

  56.         /**
  57.          * News Mod : News' detailed info table
  58.          *
  59.          * @var     string
  60.          * @access  public
  61.          */
  62.         var $nTable;

  63.         /**
  64.          * Forum Mod : Topics' summary table
  65.          *
  66.          * @var     string
  67.          * @access  public
  68.          */
  69.         var $tTable;

  70.         /**
  71.          * Forum Mod : Posts' detailed info table
  72.          *
  73.          * @var     string
  74.          * @access  public
  75.          */
  76.         var $pTable;

  77.         /**
  78.          * Member Mod : Member's group table
  79.          *
  80.          * @var     string
  81.          * @access  public
  82.          */
  83.         var $gTable;

  84.         /**
  85.          * Links Mod : Friend links table [88*31 logo]
  86.          *
  87.          * @var     string
  88.          * @access  public
  89.          */
  90.         var $lTable;

  91.         /**
  92.          * Public Mod : Guest's review table
  93.          *
  94.          * @var     string
  95.          * @access  public
  96.          */
  97.         var $rTable;

  98.         /**
  99.          * Download Mod : Software's class table
  100.          *
  101.          * @var     string
  102.          * @access  public
  103.          */
  104.         var $scTable;

  105.         /**
  106.          * Article Mod : Article's class table
  107.          *
  108.          * @var     string
  109.          * @access  public
  110.          */
  111.         var $acTable;

  112.         /**
  113.          * News Mod : News' class table
  114.          *
  115.          * @var     string
  116.          * @access  public
  117.          */
  118.         var $ncTable;

  119.         /**
  120.          * Forum Mod : Forum's class table
  121.          *
  122.          * @var     string
  123.          * @access  public
  124.          */
  125.         var $fcTable;

  126.         /**
  127.          * The table's name array
  128.          * propertie's name =>; table mame(not include prefix)
  129.          *
  130.          * @var     array
  131.          * @access  private
  132.          */
  133.         var $tableArray = array (
  134.                                     "uTable" =>; "user",
  135.                                     "sTable" =>; "softs",
  136.                                     "aTable" =>; "articles",
  137.                                     "nTable" =>; "news",
  138.                                     "tTable" =>; "topics",
  139.                                     "pTable" =>; "posts",
  140.                                     "gTable" =>; "gorup",
  141.                                     "lTable" =>; "links",
  142.                                     "rTable" =>; "reviews",
  143.                                     "acTable" =>; "class_article",
  144.                                     "ncTable" =>; "class_news",
  145.                                     "scTable" =>; "class_soft",
  146.                                     "fcTable" =>; "class_forum"
  147.                                 );
  148.         /**
  149.         * @return object use properties instead of database tables' name
  150.         * @desc Foreach the array of the database tables
  151.         */
  152.         function Table($tbsPre)
  153.         {
  154.             foreach ($this->;tableArray as $key =>; $value)
  155.             {
  156.                 $this->;$key = $tbsPre . $value;
  157.             }
  158.         }
  159.     }

  160. ?>;
复制代码


请多多指点,谢谢.........如果可以的话,介绍几篇相关的文章看看,最好是思想的...就如longnetpro说的那些类的设计..谢谢,最好是中文的

好久没来了,最近超忙。
上面longnetpro都说了我就不多说了,代码我没有细看,觉得这个类超厉害什么都管,酷仔。


确实什么都管-_#,献丑了,挖个地洞钻进去.....
longnetpro 该用户已被删除
7 [报告]
发表于 2004-04-21 21:12 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP