PHP数组计数

我有以下 php 代码,它通过循环并将元素推送到数组。我想在循环结束时计算该数组中的元素。但它没有显示任何东西。有人可以在这里帮助我吗?


<?php

  $i=0;

  $uphPerOperator = [];

    while($i<10){

     $uphPerOperator = array_push($uphPerOperator,$i);

     $i++;

    }

  $uphArrayCount = count($uphPerOperator);   

  echo $uphArrayCount; ?>


犯罪嫌疑人X
浏览 138回答 1
1回答

泛舟湖上清波郎朗

我通过以下方式更改代码使代码正常工作<?php&nbsp; $i=0;&nbsp; $uphPerOperator = [];&nbsp; &nbsp; while($i<10){&nbsp; &nbsp; &nbsp;array_push($uphPerOperator,$i);&nbsp; &nbsp; &nbsp;$i++;&nbsp; &nbsp; }&nbsp; $uphArrayCount = count($uphPerOperator);&nbsp; &nbsp;&nbsp; echo $uphArrayCount; ?>基本上我改$uphPerOperator = array_push($uphPerOperator,$i);到array_push($uphPerOperator,$i);和它的工作原理
打开App,查看更多内容
随时随地看视频慕课网APP