Home >php教程 >php手册 >PHP Zend加密文件破解方法介绍

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

WBOY
WBOYOriginal
2016-06-21 08:55:441131browse

你如果想对PHP Zend加密文件进行破解的话,可以在网上搜罗一些具体的方法。我们在这里就为大家介绍了一种简单的PHP Zend加密文件破解的方法。

  应用PHP框架应该注意些什么

  经验总结 PHP框架常见错误

  全方位讲解PHP zend安装技巧

  带你走进PHP Zend框架

  PHP Zend框架模块列表一览

  PHP Zend加密文件破解相关代码:

function send_confirm( $user_id )  
{  
  $result = mysql_query( "select * 
  from user where id=".$user_id );  
  if ( mysql_num_rows( $result ) == 1 )  
  {  
    $user_row = mysql_fetch_assoc( $result );  
  }  
  $mtemplate = $this->config[reg_template];  
  $mtemplate = preg_replace( "/\\[link\\]
  /i", $this->config[http_link].( "confirm.
  php?id=".$user_id."&key=" ).$user_row
  [confirm], $mtemplate );  
  $mtemplate = preg_replace( "/\\[email\\]
  /i", $user_row[email], $mtemplate );  
  $mtemplate = preg_replace( "/\\[login\\]
  /i", $user_row[login], $mtemplate );  
  $mail_params = array( );  
  list( $mheader, $mail_params[body] ) = 
  split( "\r\n\r\n", $mtemplate, 2 );  
  $mheaders = split( "\r\n", $mheader );  
  foreach ( $mheaders as $m_row )  
  {  
    list( $key, $val ) = split( ":", $m_row, 2 );  
    if ( strtolower( $key ) == "to" )  
    {  
      $mail_params[to] = ltrim( $val );  
    }  
    else if ( strtolower( $key ) == "subject" )  
    {  
      $mail_params[subject] = ltrim( $val );  
    }  
    else  
    {  
      $mail_params[headers] .= "{$key}: ".ltrim
      ( $val )."\r\n";  
     }  
  }  
  return mail( $mail_params[to], $mail_params
  [subject], $mail_params[body], $mail_params[headers] );  


}  PHP Zend加密文件破解的相关代码示例就写到这里。



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn