无法调用数组上的计数

时间:2019-09-19 02:02:05

标签: php laravel

我无法在数组上调用count,它显示:

  

count():参数必须是实现的数组或对象   可数的。

//dd(gettype($question->options));//This line displays: "array" 
$realQuestion->total_answers = count($question->options); //But this one is not working

3 个答案:

答案 0 :(得分:2)

如果您要建立关系,请使用口才计数

尝试使用此计数可能会对您有所帮助。

.attr('cx', function(d, i) {return (i % maxColumn) * 30})

答案 1 :(得分:0)

问题已解决,指令处于循环中,导致错误的count实际参数不是数组。

答案 2 :(得分:-1)

尝试改用the "count" aggregate method


    <h6 style="color:teal"><?php echo $question->options->count(); ?></h6>