관리-도구
편집 파일: TestGeneratorMaker.php
<?php class TestGeneratorMaker { public function create($array = []) { foreach ($array as $key => $value) { yield $key => $value; } } }