我开始使用Tutis 登录脚本。我做了一些更改,但以下给了我错误:
我想列出所有注册用户,但 Foreach 循环不起作用。
我在 member.class.php 中创建了一个新函数:
// Registered Users
public function rusers()
{
global $database;
$notice = new notice;
$users = $database->query('SELECT id, username, date FROM users');
$return_form = 1;
$user = "<table>"
. "<tr>"
. "<td>ID</td>"
. "<td>UserName</td>"
. "<td>Date</td>"
. "</tr>";
// Function in the database.class.php
$result = $database->foreachloop($users);
foreach ($result as $row)
{
$user.= "<tr><td>".$row['id']."</td>";
$user.= "<td>".$row['username']."</td><td>".$row['date']."</td></tr>";
}
$user.= "</table>";
/* Combine Data */
$data = "";
/* Do we need the login form? */
if ($return_form == 1)
{
$data .= $user;
}
/* Return data */
return $notice->report() . $data;
}
并在 database.class.php 中添加了 foreachloop() 函数
public function foreachloop($result)
{
return $this->statement->fetch(PDO::FETCH_ASSOC);
}
但我收到以下长错误:
*Warning: Illegal string offset 'id' in C:\wamp\www\loginoop3\assets\member.class.php on line 996
Warning: Illegal string offset 'username' in C:\wamp\www\loginoop3\assets\member.class.php on line 997
Warning: Illegal string offset 'date' in C:\wamp\www\loginoop3\assets\member.class.php on line 997
Warning: Illegal string offset 'id' in C:\wamp\www\loginoop3\assets\member.class.php on line 996
Warning: Illegal string offset 'username' in C:\wamp\www\loginoop3\assets\member.class.php on line 997
Warning: Illegal string offset 'date' in C:\wamp\www\loginoop3\assets\member.class.php on line 997*
输出是:
*ID UserName Date
t t t
2 2 2*
这里的 2 数字表示用户 ID,“t”字母是“test”用户名,但只显示第一个字母......并且只显示一个用户,但有更多用户。
我不知道怎么了。有人有什么建议吗?
此登录使用 OOP PDO。我尝试通过 rowCount() 进行更改,因为它在 database.class.php 中有一个新函数,内容如下:
public function affected($result)
{
return $this->statement->rowCount();
}