dtx9763 2016-09-29 15:41 采纳率: 100%
浏览 86
已采纳

防止die()删除下面的所有内容

In my registration code I have several die() "functions", like if the username is empty, or in use, email, password, etc. The point is, every time something goes wrong I use die() but this will cause the page to not render everything below the die() "function".

What whould be the best way to prevent this? I was thinking of doing something like

<?php $page = ?>
<body>
  <p>Page information here</p>
</body>
<?php ; ?>

but this whould ofc not work as I had planed. Second idea was to store every die() in a variable so I could then late use

<div class="error"><?php echo $error; ?></div>

and maybe store the whole registration code at the bottom of the footer and make it only load if the url was /register/. But what is the best way to deal with something like this?

Register.php:

<?php 
ob_start();
    // This if statement checks to determine whether the registration form has been submitted 
      // If it has, then the registration code is run, otherwise the form is displayed 
      if(!empty($_POST)) {

        // check length of $_POST['username']
        if (strlen($_POST['username']) <3){
          die('
              <div class="container">
                <div class="flag note note--error">
                  <div class="flag__image note__icon">
                    <i class="fa fa-times"></i>
                  </div>
                  <div class="flag__body note__text">
                    Something went wrong!<br />
                    The username is too short (requier atleast 3 characters).
                  </div>
                  <a href="#" class="note__close">
                    <i class="fa fa-times"></i>
                  </a>
                </div>
              </div>
          '); 
        }

        // check length of $_POST['password']
        if (strlen($_POST['password']) <5){
          die('
              <div class="container">
                <div class="flag note note--error">
                  <div class="flag__image note__icon">
                    <i class="fa fa-times"></i>
                  </div>
                  <div class="flag__body note__text">
                    Something went wrong!<br />
                    Your password is too short (requier atleast 5 characters)!
                  </div>
                  <a href="#" class="note__close">
                    <i class="fa fa-times"></i>
                  </a>
                </div>
              </div>
          '); 
        }
        // Ensure that the user has entered a non-empty username 
        if(empty($_POST['username'])) 
        { 
            // Note that die() is generally a terrible way of handling user errors 
            // like this.  It is much better to display the error with the form 
            // and allow the user to correct their mistake.  However, that is an 
            // exercise for you to implement yourself. ;
            die('
              <div class="container">
                <div class="flag note note--error">
                  <div class="flag__image note__icon">
                    <i class="fa fa-times"></i>
                  </div>
                  <div class="flag__body note__text">
                    Something went wrong!<br />
                    Please enter a username.
                  </div>
                  <a href="#" class="note__close">
                    <i class="fa fa-times"></i>
                  </a>
                </div>
              </div>
                '); 
        } 

        // Ensure that the user has entered a non-empty password 
        if(empty($_POST['password'])) 
        { 
            die('
              <div class="container">
                <div class="flag note note--error">
                  <div class="flag__image note__icon">
                    <i class="fa fa-times"></i>
                  </div>
                  <div class="flag__body note__text">
                    Something went wrong!<br />
                    Password cant be empty.
                  </div>
                  <a href="#" class="note__close">
                    <i class="fa fa-times"></i>
                  </a>
                </div>
              </div>
                '); 
        } 

        // Make sure the user entered a valid E-Mail address 
        // filter_var is a useful PHP function for validating form input, see: 
        // http://us.php.net/manual/en/function.filter-var.php 
        // http://us.php.net/manual/en/filter.filters.php 
        if(!filter_var($_POST['email'], FILTER_VALIDATE_EMAIL)) 
        { 
            die('
              <div class="container">
                <div class="flag note note--error">
                  <div class="flag__image note__icon">
                    <i class="fa fa-times"></i>
                  </div>
                  <div class="flag__body note__text">
                    Something went wrong!<br />
                    Please enter a valid E-mail address.
                  </div>
                  <a href="#" class="note__close">
                    <i class="fa fa-times"></i>
                  </a>
                </div>
              </div>
                '); 
        } 

        // We will use this SQL query to see whether the username entered by the 
        // user is already in use.  A SELECT query is used to retrieve data from the database. 
        // :username is a special token, we will substitute a real value in its place when 
        // we execute the query. 
        $query = " 
            SELECT 
                1 
            FROM users 
            WHERE 
                username = :username 
        "; 

        // This contains the definitions for any special tokens that we place in 
        // our SQL query.  In this case, we are defining a value for the token 
        // :username.  It is possible to insert $_POST['username'] directly into 
        // your $query string; however doing so is very insecure and opens your 
        // code up to SQL injection exploits.  Using tokens prevents this.
        // For more information on SQL injections, see Wikipedia: 
        // http://en.wikipedia.org/wiki/SQL_Injection 
        $query_params = array( 
            ':username' => $_POST['username'] 
        ); 

        try 
        { 
            // These two statements run the query against your database table. 
            $stmt = $db->prepare($query); 
            $result = $stmt->execute($query_params); 
        } 
        catch(PDOException $ex) 
        { 
            // Note: On a production website, you should not output $ex->getMessage(). 
            // It may provide an attacker with helpful information about your code. 
            die('
              <div class="container">
                <div class="flag note note--error">
                  <div class="flag__image note__icon">
                    <i class="fa fa-times"></i>
                  </div>
                  <div class="flag__body note__text">
                    Something went wrong!<br />
                    We where not able to process your information.
                  </div>
                  <a href="#" class="note__close">
                    <i class="fa fa-times"></i>
                  </a>
                </div>
              </div>
                ' . $ex->getMessage()); 
        } 

        // The fetch() method returns an array representing the "next" row from 
        // the selected results, or false if there are no more rows to fetch. 
        $row = $stmt->fetch(); 

        // If a row was returned, then we know a matching username was found in 
        // the database already and we should not allow the user to continue. 
        if($row) 
        { 
            die('
              <div class="container">
                <div class="flag note note--error">
                  <div class="flag__image note__icon">
                    <i class="fa fa-times"></i>
                  </div>
                  <div class="flag__body note__text">
                    Something went wrong!<br />
                    Username is already taken
                  </div>
                  <a href="#" class="note__close">
                    <i class="fa fa-times"></i>
                  </a>
                </div>
              </div>
                '); 
        } 

        // Now we perform the same type of check for the email address, in order 
        // to ensure that it is unique. 
        $query = " 
            SELECT 
                1 
            FROM users 
            WHERE 
                email = :email 
        "; 

        $query_params = array( 
            ':email' => $_POST['email'] 
        ); 

        try 
        { 
            $stmt = $db->prepare($query); 
            $result = $stmt->execute($query_params); 
        } 
        catch(PDOException $ex) 
        { 
            die('
              <div class="container">
                <div class="flag note note--error">
                  <div class="flag__image note__icon">
                    <i class="fa fa-times"></i>
                  </div>
                  <div class="flag__body note__text">
                    Something went wrong!<br />
                    We where not able to process your information. Please try again.
                  </div>
                  <a href="#" class="note__close">
                    <i class="fa fa-times"></i>
                  </a>
                </div>
              </div>
                ' . $ex->getMessage()); 
        } 

        $row = $stmt->fetch(); 

        if($row) 
        { 
            die('
              <div class="container">
                <div class="flag note note--error">
                  <div class="flag__image note__icon">
                    <i class="fa fa-times"></i>
                  </div>
                  <div class="flag__body note__text">
                    Something went wrong!<br />
                    E-mail address is already taken.
                  </div>
                  <a href="#" class="note__close">
                    <i class="fa fa-times"></i>
                  </a>
                </div>
              </div>
                '); 
        } 

        // An INSERT query is used to add new rows to a database table. 
        // Again, we are using special tokens (technically called parameters) to 
        // protect against SQL injection attacks. 
        $query = " 
            INSERT INTO users ( 
                username, 
                password, 
                salt, 
                email 
            ) VALUES ( 
                :username, 
                :password, 
                :salt, 
                :email 
            ) 
        "; 

        // A salt is randomly generated here to protect again brute force attacks 
        // and rainbow table attacks.  The following statement generates a hex 
        // representation of an 8 byte salt.  Representing this in hex provides 
        // no additional security, but makes it easier for humans to read.
        // For more information: 
        // http://en.wikipedia.org/wiki/Salt_%28cryptography%29 
        // http://en.wikipedia.org/wiki/Brute-force_attack 
        // http://en.wikipedia.org/wiki/Rainbow_table 
        $salt = dechex(mt_rand(0, 2147483647)) . dechex(mt_rand(0, 2147483647)); 

        // This hashes the password with the salt so that it can be stored securely 
        // in your database.  The output of this next statement is a 64 byte hex 
        // string representing the 32 byte sha256 hash of the password.  The original 
        // password cannot be recovered from the hash.  For more information: 
        // http://en.wikipedia.org/wiki/Cryptographic_hash_function 
        $password = hash('sha256', $_POST['password'] . $salt); 

        // Next we hash the hash value 65536 more times.  The purpose of this is to 
        // protect against brute force attacks.  Now an attacker must compute the hash 65537 
        // times for each guess they make against a password, whereas if the password 
        // were hashed only once the attacker would have been able to make 65537 different  
        // guesses in the same amount of time instead of only one. 
        for($round = 0; $round < 65536; $round++) 
        { 
            $password = hash('sha256', $password . $salt); 
        } 

        // Here we prepare our tokens for insertion into the SQL query.  We do not 
        // store the original password; only the hashed version of it.  We do store 
        // the salt (in its plaintext form; this is not a security risk). 
        $query_params = array( 
            ':username' => $_POST['username'], 
            ':password' => $password, 
            ':salt' => $salt, 
            ':email' => $_POST['email'] 
        ); 

        try 
        { 
            // Execute the query to create the user 
            $stmt = $db->prepare($query); 
            $result = $stmt->execute($query_params); 
        } 
        catch(PDOException $ex) 
        { 
            // Note: On a production website, you should not output $ex->getMessage(). 
            // It may provide an attacker with helpful information about your code.  
            die('
              <div class="container">
                <div class="flag note note--error">
                  <div class="flag__image note__icon">
                    <i class="fa fa-times"></i>
                  </div>
                  <div class="flag__body note__text">
                    Something went wrong!<br />
                    We where not able to process your information. Please try again
                  </div>
                  <a href="#" class="note__close">
                    <i class="fa fa-times"></i>
                  </a>
                </div>
              </div>
                ' . $ex->getMessage()); 
        } 

        ob_clean();
        // This redirects the user back to the login page after they register 
        echo'
          <div class="container">
            <div class="flag note note--info">
              <div class="flag__image note__icon">
                <i class="fa fa-info"></i>
              </div>
              <div class="flag__body note__text">
                <p>Successfull!<br />
                We have sent you an E-mail With a verification link. Please use the link to verify your account,
                and complete your registration.</p>
              </div>
              <a href="#" class="note__close">
                <i class="fa fa-times"></i>
              </a>
            </div>
          </div>
        ';

        // Calling die or exit after performing a redirect using the header function 
        // is critical.  The rest of your PHP script will continue to execute and 
        // will be sent to the user if you do not die or exit. 
        die(); 

    } 


//session to store input after die() function
?> 
  • 写回答

1条回答 默认 最新

  • dptpn06684 2016-09-29 15:47
    关注

    Use echo instead. die is equivalent to exit, which would obviously exit your script after executing.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)
  • ¥15 AIC3204的示例代码有吗,想用AIC3204测量血氧,找不到相关的代码。