使用类方法来提取数据库信息

时间:2013-05-03 19:49:49

标签: php mysql

概述:我有一个函数应该根据其id号拉取一行数据

问题:似乎我的功能正在返回,但它没有返回任何内容。

详细信息:

- 我在这里使用了两个不同的文件:db_class.php和character_pull.php

- 我还有一个包含1个表(字符)的数据库,其中包含列“id”

- 有回调线用于调试。我将给出输出结果。

character_pull.php:

<?php

    include "db_class.php";

    echo "made it out here1";

    $classobject = new db_class();
    echo "made it out here2";

    $results = $classobject->getPlayerStats("1");

    print_r($results);

    echo "made it out here3";

        $id = "id: " . $results['id'];
        $name = "name: " . $results['charname'];
        $strength = "strength: " . $results['strength'];
        $defense = "defense: " . $results['defense'];
        $health = "health: " . $results['health'];
        $level = "level: " . $results['level'];
        $type = "type: " . $results['type'];
        $experience = "experience: " . $results['experience'];

    echo"<br/>"; 

    echo "made it out here4";
?>

db_class.php:

<?php

include "database_connect.php";

class db_class{



    public function getPlayerStats($id){

        echo "<br/>" . "making it in class1";

        $query = "SELECT * FROM characters WHERE id = $id";
        $result = mysqli_query($query);

        return $char = mysqli_fetch_array($result);


            $result ->close();
    }

}

&GT;

我运行页面时收到的输出是:

  

在这里做出来1在这里制作它2在class1中制作它   here3在这里做到了4

我已经尝试了几种方法来解决这个问题,但我很难弄清楚出了什么问题。

我知道这可能是非常草率和原始的,但尽量不要笑得太厉害,也许你可以帮助我:P。提前谢谢。

2 个答案:

答案 0 :(得分:2)

这里有很多问题。

您的数据库类似乎相当不完整。对我来说,如果我创建一个类来表示数据库连接和各种操作,我将在该类中建立该连接,而不是通过某些包含(我假设连接正在发生)。这里的包含仅在您的代码命中该行时才会有条件地发生。在这种情况下,由于您在类中包含任何实际函数(如构造函数),因此永远不会调用它。

我建议这样解决这个问题:

class db_class {
    protected $mysqli;
    private $db_host = 'your_db_host';
    private $db_user = 'your_db_user';
    private $db_password = 'your_db_password';
    protected $db_name = 'default_db_name';

    public __construct($db_host = NULL, $db_user = NULL, $db_password = NULL, $db_name = NULL) {
        if (!empty($db_host)) {
            $this->db_host= $db_host;
        }
        // validate other parameters similarly

        $mysqli = new mysqli($this->db_host, $this->db_use, $this->db_password, $this->db_name);

        if($mysqli->connect_error) {
            throw new Exception('Connect Error: ' . $mysqli->connect_errno . ', ' . $mysqli->connect_error);
        } else {
            $this->mysqli = $mysqli;
        }
    }

    // other class methods
}

您现在有一个对象代表$this->mysqli中的mysqli连接存储。

您的getPlayerStats()方法现在可能看起来像

public function getPlayerStats($id) {
    if(empty($id)) {
        throw new Exception ('An empty value was passed for id');
    }
    // verify this is integer-like value
    $id = (string)$id;
    $pattern = '/^\d+$/';
    if (!preg_match($pattern, $id) !== 1) {
        throw new Exception ('A non-integer value was passed for id');
    }
    $id = (int)$id;

    $query = "SELECT id, name, strength, defense, level, health, type, experience FROM characters WHERE id = :id";
    $stmt = $this->mysqli->prepare($query);
    $stmt->bind_param('i', $id);
    $result = $stmt->execute();

    if (false === $result) {
        throw new Exception('Query error: ' . $stmt->error);
    } else {
        $obj = new stdClass();
        $stmt->bind_result($obj->id, $obj->name, $obj->strength, $obj->defense, $obj->level, $obj, health, $obj->type, $obj->experience);
        $stmt->fetch();
        $stmt->close();
        return $obj;
    }
}

注意我在这里使用了预处理语句,您应该习惯使用它,因为它是查询数据库的最佳实践。另请注意,我在整个代码中都添加了错误案例处理。你应该养成这样做的习惯,因为它会使调试变得更容易。

答案 1 :(得分:0)

只是一个猜测,但我会将其移到类名之上:

<?php
include "database_connect.php";
    class db_class{