[lang-ref] ( loop_multiple_items_together ) ( php )

<?php
public function testLoopMultipleItemsTogether(): void
{
	$this->markTestSkipped('Not supported');
	// For zip-like behavior, iterate by index with min(count(...)).
	// E.g. for ($i = 0; $i < min(count($a), count($b), count($c)); $i++) { ... }
}