<?php
$arrayList = [22, 99, 89, 45, 23, 40, 99];
$num =$arrayList;
for ($x=0;$x<=count($num);$x++ ){
echo $num[$x] . PHP_EOL;
}
tem como utilizar o length inves de count($num) ?
<?php
$arrayList = [22, 99, 89, 45, 23, 40, 99];
$num =$arrayList;
for ($x=0;$x<=count($num);$x++ ){
echo $num[$x] . PHP_EOL;
}
tem como utilizar o length inves de count($num) ?
Olá, Leandro.
Não existe a função length
no PHP. Não entendi bem sua dúvida.