程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> disucz代碼分析

disucz代碼分析

編輯:關於PHP編程

1.discuz/templates/default/viewthread_fastpost.htm :
表單中請求地址為action="post.php?action=reply&amp;fid=$fid&amp;tid=$tid&amp;extra=$extra&amp;replysubmit=yes<!--{if $ordertype != 1}-->&infloat=yes&handlekey=fastpost
看最後的handlekey=fastpost

2.discuz/post.php 引入了 bbs/include/newreply.inc.php
Php代碼 
      
//file_put_contents(bbbb.txt,"viewthread.php?tid=$tid&pid=$pid&page=$page&extra=$extra#pid$pid");  
//viewthread.php?tid=1&pid=21&page=2&extra=page%3D1#pid21  
showmessage($replymessage, "viewthread.php?tid=$tid&pid=$pid&page=$page&extra=$extra#pid$pid"); 

  
 //file_put_contents(bbbb.txt,"viewthread.php?tid=$tid&pid=$pid&page=$page&extra=$extra#pid$pid");
 //viewthread.php?tid=1&pid=21&page=2&extra=page%3D1#pid21
 showmessage($replymessage, "viewthread.php?tid=$tid&pid=$pid&page=$page&extra=$extra#pid$pid");


3.discuz/include/global.func.php 中showmessage();
Php代碼 
elseif($handlekey)   
{  
    $show_message = str_replace("", "", $show_message);  
    if($url_forward)   
    {  
        $show_message = "<script type="text/javascript" reload="1">  
                        if($(return_$handlekey)) $(return_$handlekey).className = onright;   
                        if(typeof submithandle_$handlekey ==function)   
                        {  
                            submithandle_$handlekey($url_forward, $show_message);  
                        }   
                        else   
                        {  
                            location.href=$url_forward;//這就是跳轉回來提交頁,在下面模板中被echo  
                        }   
                        </script>";  
    }   
    省略.....   
}    

 elseif($handlekey)
 {
  $show_message = str_replace("", "", $show_message);
  if($url_forward)
  {
   $show_message = "<script type="text/javascript" reload="1">
        if($(return_$handlekey)) $(return_$handlekey).className = onright;
       if(typeof submithandle_$handlekey ==function)
       {
        submithandle_$handlekey($url_forward, $show_message);
       }
       else
       {
        location.href=$url_forward;//這就是跳轉回來提交頁,在下面模板中被echo
       }
       </script>";
  }
  省略..... 
 } 


showmessage()最後
Php代碼 
include template(showmessage); 

 include template(showmessage);


4.disucz/templates/default/showmessage.htm
Php代碼 
{echo str_replace(array({lang return_search}), array({lang return_replace}), $show_message)}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved