doupingzhi9674 2016-04-20 15:12
浏览 114
已采纳

致命错误:在整数上调用成员函数prepare()

I'm working on a website; apache asks me to upgrade to the new method of PDO.

I have my function which will collect all the information of user X, indicated by the variable $_SESSION['username'].

My problem is: I get the error title. However I want to collect String and INT values.

My Function: functions.php

function getDetails($username) {
    $db = require("dbConn.php");
    $sql = $db->prepare("SELECT * FROM `es42_members` WHERE HandleName='$username'");
    $sql->execute();
    $row = $sql->fetchAll();

    return $row;
}

My index file: index.php

$details = getDetails($_SESSION['username']);

while ($row = $details->fetch_assoc())  {
    $id = $row['UserID'];
    $email = $row['Email']; // This return String
    $isAdmin = $row['isAdmin']; //This return 0 - 1. But in the table is registered by String (Varchar).
}

echo "Your email is: $email";
if($isAdmin == "1"){ echo "You are a admin!" }

UPDATE My new code is as follows:

Function: @Marcus

function getDetails($username) {
    require("dbConn.php");
    $sql = $db->prepare("SELECT * FROM `es42_members` WHERE HandleName='$username'");
    $sql->execute();
    $row = $sql->fetchAll();

    return $row;
}

dbConn.php [Original]

<?php 

$db = new PDO('mysql:host=localhost;dbname=ProfileTest', "root", "1234");
$db = null;

?>

dbConn.php [Edited and working]

<?php 

$db = new PDO('mysql:host=localhost;dbname=ProfileTest', "root", "1234");

?>
  • 写回答

2条回答 默认 最新

  • dt2002 2016-04-20 15:21
    关注

    This is happening because $db isn't actually holding the PDO connection object. You've assigned the dbConn.php script itself (returns 1 on successful inclusion) to $db, which is why you're receiving the integer error in question.

    Your dbConn.php file should look something like the following (please add dbConn.php to your original post for verification):

    // dbConn.php
    $db = new PDO($dsn, $user, $password); // PDO has been instantiated and $db is holding the object
    

    Then in your functions.php script:

    function getDetails($username) {
        require("dbConn.php"); // require me, don't assign me to a variable
        $sql = $db->prepare("SELECT * FROM `es42_members` WHERE HandleName='$username'");
        $sql->execute();
        $row = $sql->fetchAll();
    
        return $row;
    }
    

    You'd simply require dbConn.php and NOT assign it to any variable.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 有没有帮写代码做实验仿真的
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥30 vmware exsi重置后登不上
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题
  • ¥20 yolov5自定义Prune报错,如何解决?
  • ¥15 电磁场的matlab仿真