我在OOP上刷新了我的记忆,并学习如何将它应用于PHP,重点是关注点分离(MVC)。为了练习,我在网上找到并编辑了一些代码。函数 query()从我的MySQL数据库返回数据。这是该类文件:
<?php
// ClassPractice.php
class ClassPractice {
public function __construct($host, $user, $pass, $name) {
$this->host = $host;
$this->user = $user;
$this->pass = $pass;
$this->name = $name;
}
protected function connect() {
return new mysqli($this->host, $this->user, $this->pass, $this->name);
}
public function query($query) {
$db = $this->connect();
$result = $db->prepare($query);
$result->execute();
$result->bind_result($username);
while ( $row = $result->fetch_object() ) {
$rows[] = $row;
}
return $rows;
}
}
?>
没有关于如何在另一个文件中实例化此类的示例,所以我自己这样做并从此文件中调用 query()方法:
<?php
// index.php
include('ClassPractice.php');
$class = new ClassPractice('host', 'user', 'password', 'database');
$results = $class->query("SELECT username FROM user");
// Display formatted results of query here
?>
由于MVC的规则规定视图必须与模型和控制器分开处理,我想用此文件显示 query()方法的结果。我对此进行了无休止的研究,但没有找到任何具体到我想要做的事情。通常,我会将方法调用分配给变量,然后根据需要操作或显示变量。在这种情况下,这似乎不是一个选项。我尝试将方法调用中的查询分配给数组变量,并使用foreach方法显示结果。到目前为止,没有任何工作。
答案 0 :(得分:0)
你的代码错了,为这一行改变'while'
while ( $result->fetch() ) {
$rows[] = $row;
}