0

我试图用 php add 制作一个刽子手游戏,我得到了整个工作,除了如果你用尽猜测它不会重定向到 fail.php。奇怪的是,如果你赢了,它会重定向。我不知道有什么问题这是我的 quess_letter.php 文件:

<?php
ob_start();
$letter = $_POST['letter'];
if (preg_match('/^[a-zA-Z]$/', $letter)) {

    $guesses = intval(substr($_COOKIE['hangman'], 0, 1));

    $word = explode(" ", $_COOKIE['hangman_word']);
    if (!strpos($_COOKIE['hangman_word'], $letter) && $letter != substr($_COOKIE['hangman_word'], 0, 1)) {
        $guesses -= 1;
        if ($guesses == 0) {
            header("location: fail.php");
        }
    }

    $i = 0;
    foreach(str_split($word[0]) as $l) {
        if ($l == $letter) {
            $word[1][$i] = $l;
        }
        $i++;
    }

    $new_cookie = strval($guesses) . " " . substr($_COOKIE['hangman'], 1) . $letter . " ";

    setcookie('hangman', $new_cookie, time() + 3600 * 24);
    setcookie('hangman_word', "$word[0] $word[1]", time() + 3600 * 24);
    if ($word[0] != $word[1]) {
        header("location: index.php");
    } else {
        header("location: win.php");
    }
} else {
    header("location: index.php?error=true");
}

?>

这是整个文件。它应该在 $guesses 等于 0 时重定向。并且在重定向之前没有打印任何内容。我已经研究过了,但没有一个答案有效。有人可以解释什么是错的吗?谢谢

4

1 回答 1

1

如果您确定 $guesses 将准确地达到“ 0 ”

尝试

if ($guesses == 0) 
{
header("location: fail.php");
exit(); 
}
于 2013-03-26T01:22:10.583 回答