php 发电机与前期和产量的比较
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 发电机与前期和产量的比较相关的知识,希望对你有一定的参考价值。
<?php declare(strict_types=1);
class Test
{
private $arr = [];
public function __construct()
{
for ( $i = 0; $i < 10000; $i++ )
{
$this->arr["key{$i}"] = "value{$i}";
}
}
public function getIterator() : Iterator
{
foreach ( $this->arr as $key => $value )
{
yield $key => $value;
}
}
}
$test = new Test();
foreach ( $test->getIterator() as $key => $value )
{
echo $key, ' => ', $value, "\n";
}
<?php declare(strict_types=1);
class Test
{
private $arr = [];
public function __construct()
{
for ( $i = 0; $i < 10000; $i++ )
{
$this->arr["key{$i}"] = "value{$i}";
}
}
public function getIterator() : Iterator
{
yield from $this->arr;
}
}
$test = new Test();
foreach ( $test->getIterator() as $key => $value )
{
echo $key, ' => ', $value, "\n";
}
以上是关于php 发电机与前期和产量的比较的主要内容,如果未能解决你的问题,请参考以下文章
终究是拼不过小姑娘的
新能源汽车车载充电机详解_新能源汽车车载充电机图解
新能源汽车车载充电机详解_新能源汽车车载充电机图解
新能源汽车车载充电机详解_新能源汽车车载充电机图解
新能源汽车车载充电机详解_新能源汽车车载充电机图解
前期的准备工作,电机驱动以及电源驱动