尚未允许财产访问

时间:2018-07-27 04:34:51

标签: php mysql sql mysqli

我有一个简单的功能,可以从数据库中删除帐户。我写得像下面一样

<android.support.v7.widget.CardView
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:layout_columnWeight="1"
    android:layout_rowWeight="2"
    android:layout_column="0"
    android:layout_row="0"
    android:layout_marginRight="10dp"
    android:layout_marginTop="10dp"
    android:layout_marginBottom="10dp"
    app:cardElevation="8dp"
    app:cardCornerRadius="8dp">


    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:layout_gravity="center">
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:layout_centerVertical="true"
            android:layout_centerHorizontal="true"
            android:gravity="center">
            <TextView
                android:id="@+id/bids_number"
                android:background="@drawable/circulerimageblue"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="10"
                android:layout_marginBottom="-7dp"
                android:paddingLeft="4dp"
                android:paddingRight="4dp"
                android:paddingTop="1dp"
                android:paddingBottom="1dp"
                android:textStyle="normal|bold"
                android:textColor="@color/colorSecondary"
                android:layout_gravity="top|right" />
            <ImageView
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:layout_centerHorizontal="true"
                android:elevation="6dp"
                android:id="@+id/bids_icon"
                android:background="@drawable/circulerimageunselected"
                android:layout_marginBottom="6dp"
                android:src="@drawable/icon_profile"
                android:adjustViewBounds="true"
                android:scaleType="fitXY"/>
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Get Bids"
                android:textAppearance="@style/TextAppearance.AppCompat"
                android:textStyle="normal|bold"
                android:fontFamily="sans-serif" />
        </LinearLayout>

    </RelativeLayout>

</android.support.v7.widget.CardView>

它在下面一行给我警告

public function removeAccount($email) {
    $response = array('code' => 0, 'error' => false);
    $stmt = $this->conn->prepare("SELECT id FROM user WHERE email = ?");
    $stmt->bind_param("s", $email);
    $stmt->execute();
    $result = $stmt->get_result();
    if ($result->num_rows) {
        $user   =  $result->fetch_assoc();
        $id = $user['id'];
        $stmt->close();

        $stmt = $this->conn->prepare("DELETE FROM number_list WHERE user_id = ?");
        $stmt->bind_param("i", $id);
        $stmt->execute();
        $stmt->close();

        $stmt = $this->conn->prepare("DELETE FROM number_status WHERE user_id = ?");
        $stmt->bind_param("i", $id);
        $stmt->execute();
        $stmt->close();

        $stmt = $this->conn->prepare("INSERT INTO old_user(email,serial,premium) SELECT email, device_id, membership FROM user WHERE id = ?");
        $stmt->bind_param("i", $id);
        $stmt->execute();
        $stmt->close();

        $stmt = $this->conn->prepare("DELETE FROM user WHERE id = ?");
        $stmt->bind_param("i", $id);
        $stmt->execute();
        $stmt->close();

        if ($stmt->affected_rows) {
            $response["code"] = 1;
        }
    }

    return $response;
}

我一直在寻找解决问题的方法,但并不清楚问题是什么以及可以解决的问题。请检查,并让我知道是否有人对此有想法。非常感谢。

3 个答案:

答案 0 :(得分:2)

$stmt = $this->conn->prepare("DELETE FROM user WHERE id = ?");
$stmt->bind_param("i", $id);
$stmt->execute();
if($stmt->affected_rows > 0) { $response["code"] = 1; }
$stmt->close();

在这种情况下,我们检查是否有任何行被更新。作为参考,这是mysqli::$affected_rows返回值的用法。

-1 -查询返回错误;如果已经为execute()

进行了错误处理,则为冗余

0 -没有在UPDATE上更新的记录,没有与WHERE子句匹配的行,或者没有执行任何查询

大于0 -返回受影响的行数;与mysqli_result::$num_rows的{​​{1}}相当

答案 1 :(得分:0)

您正在尝试从封闭的语句中获取受影响的行数。 代替

$stmt->execute();
$stmt->close();
if ($stmt->affected_rows) {
    $response["code"] = 1;
}

使用

$stmt->execute();
$num_affected_rows = $stmt->affected_rows;
$stmt->close();
if ($num_affected_rows) {
    $response["code"] = 1;
}

答案 2 :(得分:0)

造成此错误的原因很多,但是我今天遇到的一个原因是我在任何地方都没有找到文件。

我有两(2)个运行相同虚拟机的副本,而且它们都以某种我不太理解的方式竞争,但是进入VirtualBox并关闭其中一个就解决了问题。

我知道这是一个晦涩的情况,但是如果其他任何人遇到相同的情况,我希望我的回答能够像他们一样避免他们浪费时间。