PHP 7.2 - Warning: count(): Parameter must be an array or an object that implements Countable(PHP 7.2 - 警告:count():参数必须是一个数组或一个实现 Countable 的对象)
问题描述
我刚刚将我的 PHP 安装从 5.6 升级到了 7.2.我在登录页面上使用了 count()
函数,如下所示:
I just upgraded my PHP installation from version 5.6 to 7.2. I used the count()
function on my login page like so:
if (!empty($_POST['username']) && !empty($_POST['password'])):
$records = $conn->prepare('SELECT id,username,password FROM users WHERE username = :username');
$records->bindParam(':username', $_POST['username']);
$records->execute();
$results = $records->fetch(PDO::FETCH_ASSOC);
$message = '';
if (count($results) > 0 && password_verify($_POST['password'], $results['password'])) {
$_SESSION['user_id'] = $results['id'];
header("Location: /");
} else {
$message = 'Sorry, those credentials do not match';
}
endif;
搜索后,找到了类似的问题和答案,但都与WordPress有关,我找不到纯PHP的解决方案.
After searching, I found questions and answers similar to this one, but they all were related to WordPress, and I couldn’t find a solution for Pure PHP.
推荐答案
PDO fetch
在失败时返回 false.所以你也需要检查这个案例:
PDO fetch
returns false on failure. So you need to check this case too:
if ($results && count($results) > 0 && password_verify($_POST['password'], $results['password'])) {
$_SESSION['user_id'] = $results['id'];
header("Location: /");
} else {
$message = 'Sorry, those credentials do not match';
}
这篇关于PHP 7.2 - 警告:count():参数必须是一个数组或一个实现 Countable 的对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP 7.2 - 警告:count():参数必须是一个数组或一个实


- PHP - if 语句中的倒序 2021-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01