使用NetBeans调试PHP脚本以修改表记录时,"affected_rows"将从1更改为-1 [英] When using NetBeans to debug PHP script to modify table records, 'affected_rows' will change from 1 to -1

查看:90
本文介绍了使用NetBeans调试PHP脚本以修改表记录时,"affected_rows"将从1更改为-1的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在测试一个简单的PHP-MySQL脚本,它将从表中删除一条记录.奇怪的是,在这段代码中:

I am testing a simple PHP-MySQL script, and it's to delete one record from the table. The strange thing is in this block of code:

// Check if the form has been submitted:
if ($_SERVER['REQUEST_METHOD'] == 'POST') {

    if ($_POST['sure'] == 'Yes') { // Delete the record.

        // Make the query:
        $q = "DELETE FROM users WHERE user_id=$id LIMIT 1";     
        $r = @mysqli_query ($dbc, $q);
        if (mysqli_affected_rows($dbc) == 1) { // If it ran OK.

当我使用NetBeans调试此脚本时,删除记录后(执行$ r = @mysqli_query($ dbc,$ q)),NetBeans变量部分中的受影响的行= 1,这是正确的.但是然后在我按F7进入并执行了"if(mysqli_affected_rows($ dbc)== 1)"后,受影响的行突然变为-1,程序逻辑跳至错误报告分支.

When I use NetBeans to debug this script, after the record is deleted($r = @mysqli_query ($dbc, $q) is executed), the affected_rows = 1 in the variable section of NetBeans, which is correct. But then after I press F7 to step into and 'if (mysqli_affected_rows($dbc) == 1)' is executed, affected_rows suddenly becomes -1, and the program logic jumps to the error reporting branch.

如果我不调试而仅运行脚本,则删除完全可以.可能是什么原因?

If I don't debug and just run the script, the Deletion is totally OK. What's the possible cause?

这是整个脚本:

    <?php # Script 10.2 - delete_user.php
// This page is for deleting a user record.
// This page is accessed through view_users.php.

$page_title = 'Delete a User';
include ('includes/header.html');
echo '<h1>Delete a User</h1>';

// Check for a valid user ID, through GET or POST:
if ( (isset($_GET['id'])) && (is_numeric($_GET['id'])) ) { // From view_users.php
    $id = $_GET['id'];
} elseif ( (isset($_POST['id'])) && (is_numeric($_POST['id'])) ) { // Form submission.
    $id = $_POST['id'];
} else { // No valid ID, kill the script.
    echo '<p class="error">This page has been accessed in error.</p>';
    include ('includes/footer.html'); 
    exit();
}

require ('./mysqli_connect.php');

// Check if the form has been submitted:
if ($_SERVER['REQUEST_METHOD'] == 'POST') {

    if ($_POST['sure'] == 'Yes') { // Delete the record.

        // Make the query:
        $q = "DELETE FROM users WHERE user_id=$id LIMIT 1";     
        $r = @mysqli_query ($dbc, $q);
        if (mysqli_affected_rows($dbc) == 1) { // If it ran OK.

            // Print a message:
            echo '<p>The user has been deleted.</p>';   

        } else { // If the query did not run OK.
            echo '<p class="error">The user could not be deleted due to a system error.</p>'; // Public message.
            echo '<p>' . mysqli_error($dbc) . '<br />Query: ' . $q . '</p>'; // Debugging message.
        }

    } else { // No confirmation of deletion.
        echo '<p>The user has NOT been deleted.</p>';   
    }

} else { // Show the form, to confirm that this user should be deleted.

    // Retrieve the user's information:
    $q = "SELECT CONCAT(last_name, ', ', first_name) FROM users WHERE user_id=$id";
    $r = @mysqli_query ($dbc, $q);

    if (mysqli_num_rows($r) == 1) { // Valid user ID, show the form. (Just 1 result as user_id is PK)

        // Get the user's information:
        $row = mysqli_fetch_array ($r, MYSQLI_NUM);

        // Display the record being deleted:
        echo "<h3>Name: $row[0]</h3>
        Are you sure you want to delete this user?";

        // Create the form:
        echo '<form action="delete_user.php" method="post">
    <input type="radio" name="sure" value="Yes" /> Yes 
    <input type="radio" name="sure" value="No" checked="checked" /> No
    <input type="submit" name="submit" value="Submit" />
    <input type="hidden" name="id" value="' . $id . '" />
    </form>';

    } else { // Not a valid user ID.
        echo '<p class="error">This page has been accessed in error.</p>';
    }

} // End of the main submission conditional.

mysqli_close($dbc);

include ('includes/footer.html');
?>

另一个问题是,运行脚本后,会有很多警告行:

Another problem is that after running the script, there are many lines of warnings:

 Warning: main(): Couldn't fetch mysqli in C:\xampp\htdocs\phpmysql4_working\delete_user.php on line 75

 Warning: main(): Couldn't fetch mysqli in C:\xampp\htdocs\phpmysql4_working\includes\footer.html on line 11
Call Stack
#   Time    Memory  Function    Location
1   0.1000  146128  {main}( )   ..\delete_user.php:0
2   249.5054    187032  include( 'C:\xampp\htdocs\phpmysql4_working\includes\footer.html' ) ..\delete_user.php:75

但是实际上已成功访问了MySQL. footer.html是:

But MySQL was actually been accessed successfully. The footer.html is:

    <!-- End of the page-specific content. --></div>

    <div id="footer">
        <p>Copyright &copy; <a href="#">Plain and Simple</a> 2007 | 
            Designed by <a href="http://www.edg3.co.uk/">edg3.co.uk</a> | 
            Sponsored by <a href="http://www.opendesigns.org/">Open Designs</a> | 
            Valid <a href="http://jigsaw.w3.org/css-validator/">CSS</a> &amp; <a href="http://validator.w3.org/">XHTML</a></p>
    </div>
</body>
</html>

我调查了

推荐答案

,发现这不是Xdebug做错事情的原因,而是MySQLi扩展本身.我在 https://bugs.php.net/bug.php上提交了针对PHP的错误报告. ?id = 67348

I investigated, and found that this is not something that Xdebug does wrong, but the MySQLi extension itself. I filed a bug report for PHP at https://bugs.php.net/bug.php?id=67348

这篇关于使用NetBeans调试PHP脚本以修改表记录时,"affected_rows"将从1更改为-1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆