程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP Zend加密文件破解方法介紹

PHP Zend加密文件破解方法介紹

編輯:關於PHP編程

你如果想對

PHP Zend加密文件破解相關代碼:

  1. function send_confirm( $user_id )  
  2. {  
  3. $result = mysql_query( "select * 
    from user where id=".$user_id );  
  4. if ( mysql_num_rows( $result ) == 1 )  
  5. {  
  6. $user_row = mysql_fetch_assoc( $result );  
  7. }  
  8. $mtemplate = $this->config[reg_template];  
  9. $mtemplate = preg_replace( "/\[link\]
    /i", $this->config[http_link].( "confirm.
    php?id=".$user_id."&key=" ).$user_row
    [confirm], $mtemplate );  
  10. $mtemplate = preg_replace( "/\[email\]
    /i", $user_row[email], $mtemplate );  
  11. $mtemplate = preg_replace( "/\[login\]
    /i", $user_row[login], $mtemplate );  
  12. $mail_params = array( );  
  13. list( $mheader, $mail_params[body] ) = 
    split( "rnrn", $mtemplate, 2 );  
  14. $mheaders = split( "rn", $mheader );  
  15. foreach ( $mheaders as $m_row )  
  16. {  
  17. list( $key, $val ) = split( ":", $m_row, 2 );  
  18. if ( strtolower( $key ) == "to" )  
  19. {  
  20. $mail_params[to] = ltrim( $val );  
  21. }  
  22. else if ( strtolower( $key ) == "subject" )  
  23. {  
  24. $mail_params[subject] = ltrim( $val );  
  25. }  
  26. else  
  27. {  
  28. $mail_params[headers] ."{$key}: ".ltrim
    ( $val )."rn";  
  29. }  
  30. }  
  31. return mail( $mail_params[to], $mail_params
    [subject], $mail_params[body], $mail_params[headers] );  

PHP Zend加密文件破解的相關代碼示例就寫到這裡。


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