参数必须是数组或使用 PHP 7.4 实现 Countable 的对象吗?
对于这行代码,我收到“参数必须是实现 Countable 的数组或对象”:
$parent = $path[count($path)-1];
我将如何重写它以使其正常工作?
I am getting "Parameter must be an array or an object that implements Countable" for this line of code:
$parent = $path[count($path)-1];
How would I rewrite it so it works?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是因为您的
$path
变量不是数组类型数据结构或其他可迭代结构。如果没有上下文,就不可能理解应该如何重写这段代码。
在未检查
$path
变量不是数组的情况下,不应运行这段代码。这可以通过调用 is_array() 函数来完成。我还注意到您正在尝试通过 count($path)-1 获取数组的最后一个元素。最好通过
end()
函数来完成此操作,但您应该注意该函数会移动数组指针。This is because your
$path
variable is not an array type data structure or other iterable structure.Without context, it is impossible to understand how you should rewrite this code.
You shouldn't run this piece of code without checking that the
$path
variable is not an array. This can be done by calling theis_array()
function.I also noticed that you are trying to get the last element of the array via
count($path)-1
. It is better to do this through theend()
function, but you should pay attention to the fact that this function shifts the array pointer.