- 论坛徽章:
- 0
|
嘿嘿,不会写类,就是几个函数拼合一起的,客观性不是很强,有时间的朋友PP了,上...
- <?php
- /*
- +----------------------------------------------------------------------+
- | Copyright (C) 2004 OpenPHP.cn . All rights reserved |
- | 本文档由深空创建于2004.03.13 |
- | 版权所有,并保留所有版权,不得修改传播 |
- | http://www.openphp.cn |
- | kim@openphp.cn |
- +----------------------------------------------------------------------+
- */
- /*
- +----------------------------------------------------------------------+
- | getweburl.class.php 站点 URL 事件类文件 |
- +----------------------------------------------------------------------+
- */
- class GetWebURL
- {
- var $level = null; // 分类级别
- var $method = null;
- var $id_real = false; //
- var $cid_real = false;
- var $id_value = null; // URL 取得的 ID 值
- var $cid_value = null; // URL 取得的 cID 值
- var $page_value = null;
- var $member_title = null;
- var $id = "id"; // 内容数据表唯一表示符名
- var $cid = "cid"; // 分类数据表唯一表示符名
- var $page = "page"; // 操作名
- var $post = array();
- var $get = array();
- // 个数据表对应关系=>;表名、类表名、类 ID 名、标题名
- var $page_array = array(
- "main" =>; array(),
- "news" =>; array(
- "table" =>; "news",
- "class_table" =>; "class_news",
- "class_id_name" =>; "class_id",
- "title_name" =>; "title",
- ),
- "soft" =>; array(
- "table" =>; "softs",
- "class_table" =>; "class_soft",
- "class_id_name" =>; "class_id",
- "title_name" =>; "title"
- ),
- "article" =>; array(
- "table" =>; "articles",
- "class_table" =>; "class_article",
- "class_id_name" =>; "class_id",
- "title_name" =>; "title"
- ),
- "forum" =>; array(
- "table" =>; "topics",
- "class_table" =>; "class_forum",
- "class_id_name" =>; "class_id",
- "title_name" =>; "title"
- ),
- "user" =>; array(
- "table" =>; "user",
- "class_table" =>; "group",
- "class_id_name" =>; "group_id",
- "title_name" =>; "username"
- ),
- );
- function GetWebURL($method = "get")
- {
- $this->;method = $method; // 取得操作方式: post || get
- $this->;get = OpenData::GetData("", "get");
- $this->;post = OpenData::GetData("", "post");
- foreach ($this->;get as $key =>; $value)
- {
- $get[$key] = $value;
- }
- foreach ($this->;post as $key =>; $value)
- {
- $post[$key] = $value;
- }
- $this->;page_value = isset($get[$this->;page]) ? $get[$this->;page] : false;
- $this->;cid_value = isset(${$this->;method}[$this->;cid]) ? ${$this->;method}[$this->;cid] : false;
- $this->;id_value = isset(${$this->;method}[$this->;id]) ? ${$this->;method}[$this->;id] : false;
- $this->;cid_value = OpenData::GetData($this->;cid, $this->;method);
- $this->;id_value = OpenData::GetData($this->;id, $this->;method);
- }
- /*
- function ChangeMethod($method = "get")
- {
- $this->;method = $method;
- }
- */
- function GetWebPage()
- {
- $open_page = $this->;page_value;
- if (empty($open_page))
- {
- return $open_page = "main";
- }
- elseif (array_key_exists($open_page, $this->;page_array))
- {
- return $open_page;
- }
- else
- {
- return $open_page = "main";
- }
- }
- function GetWebId()
- {
- if ($this->;GetWebPage() == "main")
- {
- return false;
- }
- $open_id = $this->;id_value;
- if (empty($open_id))
- {
- return false;
- }
- return $open_id;
- }
- function GetWebCid()
- {
- if ($this->;GetWebPage() == "main")
- {
- return false;
- }
- $cid = $this->;cid;
- $open_cid = $this->;cid_value;
- if (empty($open_cid))
- {
- return false;
- }
- return $open_cid;
- }
- function GetTable()
- {
- return $this->;page_array[$this->;GetWebPage()]["table"];
- }
- function GetClassTable()
- {
- return $this->;page_array[$this->;GetWebPage()]["class_table"];
- }
- function GetClassIdName()
- {
- return $this->;page_array[$this->;GetWebPage()]["class_id_name"];
- }
- function GetTitleName()
- {
- return $this->;page_array[$this->;GetWebPage()]["title_name"];
- }
- function CheckId()
- {
- global $DB;
- if (!$id = $this->;GetWebId())
- {
- return false;
- }
- $table = $this->;GetTable();
- $class_table = $this->;GetClassTable();
- $query = "Select
- m.id, m.title, c.level, c.id
- From
- " . PRE . $table . " as m
- Left Join " . PRE . $class_table . " as c
- On m.class_id = c.id
- Where m.id = '$id'";
- if ($row = $DB->;getRow($query, DB_FETCHMODE_ORDERED))
- {
- DB_showError($row);
- $this->;id_real = true;
- $this->;member_title = $row;
- $this->;level = $row[2];
- $this->;cid_value = $row[3];
- $this->;cid_real = false;
- return $row[0];
- }
- return false;
- }
- function CheckCid()
- {
- global $DB;
- if (!$cid = $this->;GetWebCid())
- {
- return false;
- }
- $table = $this->;GetClassTable();
- $query = "Select
- id, level
- From
- " . PRE . $table . "
- Where id = '$cid'";
- if ($class_row = $DB->;getRow($query, DB_FETCHMODE_ASSOC))
- {
- DB_showError($class_row);
- $this->;level = $class_row['level'];
- $this->;cid_real = true;
- return $class_row['id'];
- }
- return false;
- }
- function GetRealCid()
- {
- if ($id = $this->;CheckId())
- {
- /*
- global $DB;
- $class_id_name = $this->;GetClassIdName();
- $table = $this->;GetTable();
- $query = "Select
- $class_id_name, level
- From
- " . PRE . $table . "
- Where id = $id";
- $class_row = $DB->;getRow($query, DB_FETCHMODE_ASSOC);
- DB_showError($class_row);
- // $this->;cache_cid = $class_row['cache_id'];
- $this->;level = $class_row['level'];
- return $class_row['class_id'];*/
- return $this->;cid_value;
- }
- else
- {
- return $this->;CheckCid();
- }
- }
- function GetClassTitle()
- {
- global $DB;
- if (!$open_cid = $this->;GetRealCid())
- {
- return false;
- }
- /*
- $query = "Select
- level
- From
- " . PRE .$this->;GetClassTable() . "
- Where id = " . $open_cid;
- $level = $DB->;getOne($query);
- DB_showError($level);
- */
- $cid = explode(",", $this->;level);
- $id_num = count($cid);
- // 这里的 SQL 查询好像可以优化,只是暂时没有想到,做个标记
- $query = "Select
- id, class_name
- From
- " . PRE .$this->;GetClassTable() . "
- Where id in (" . $this->;level . ")";
- $title_array = $DB->;getAll($query, DB_FETCHMODE_ORDERED);
- DB_showError($title_array);
- array_multisort($cid,$title_array);
-
- /*
- for ($i = 0; $i < $id_num; $i++)
- {
- $query = "Select
- id, class_name
- From
- " . PRE .$this->;GetClassTable() . "
- Where id = " . $cid[$i];
- $title_array[$i] = $DB->;getRow($query, DB_FETCHMODE_ORDERED);
- DB_showError($title_array[$i]);
- }
- */
- return $title_array;
- }
- function GetMemberTitle()
- {
- global $DB;
- if (!$open_id = $this->;CheckId())
- {
- return false;
- }
- /*
- $title = $this->;GetTitleName();
- $table = $this->;GetTable();
- $query = "Select
- id, $title
- From
- " . PRE . $table . "
- Where id = $open_id";
- $member = $DB->;getRow($query, DB_FETCHMODE_ORDERED);
- DB_showError($member);
- */
- return $this->;member_title;
- }
- function WebTitleArray()
- {
- $class_title = $this->;GetClassTitle();
- $member_title = $this->;GetMemberTitle();
- if (!empty($class_title) && !empty($member_title))
- {
- $member_title = array($member_title);
- return array_merge($class_title, $member_title);
- }
- elseif (!empty($class_title))
- {
- return $class_title;
- }
- return false;
- }
- function GetTextTitle($front = "y", $link = " - ")
- {
- $title = isset($title) ? $title : "";
- if (!$web_title_array = $this->;WebTitleArray())
- {
- return false;
- }
- $num = count($web_title_array);
- for ($i = 0; $i < $num; $i++)
- {
- if ($i == 0 && $front != "y")
- {
- $title = $web_title_array[$i][1];
- }
- else
- {
- $title .= $link . $web_title_array[$i][1];
- }
- }
- return $title;
- }
- function GetLinkTitle($front = "y", $link = " <span style=\"color: #000000;\">;&</span>;& ")
- {
- $title = isset($title) ? $title : "";
- if (!$class_title_array = $this->;GetClassTitle())
- {
- return false;
- }
- $class_num = count($class_title_array);
- for ($i = 0; $i < $class_num; $i++)
- {
- if ($i == 0 && $front != "y")
- {
- $title = "<a href=\"" . MAIN_PAGE . "?" . $this->;page . "=" . $this->;GetWebPage() . "&cid=" . $class_title_array[$i][0] . "\">;" . $class_title_array[$i][1] . "</a>;";
- }
- else
- {
- $title .= $link . "<a href=\"" . MAIN_PAGE . "?" . $this->;page . "=" . $this->;GetWebPage() . "&cid=" . $class_title_array[$i][0] . "\">;" . $class_title_array[$i][1] . "</a>;";
- }
- }
- if (!$member_title = $this->;GetMemberTitle())
- {
- return $title;
- }
- else
- {
- return $title .= $link . "<a href=\"" . MAIN_PAGE . "?" . $this->;page . "=" . $this->;GetWebPage() . "&id=" . $member_title[0] . "\">;" . $member_title[1] . "</a>;";
- }
- }
- }
- ?>;
复制代码 |
|