HTML Diff
0 added 0 removed
Original 2026-01-01
Modified 2026-02-26
1 <?php // Возвращает [['one', 1], ['two', 2], ['three', 3]] zip(['one', 'two', 'three'], [1, 2, 3]); // Возвращает ['one|1', 'two|2', 'three|3'] zip( ['one', 'two', 'three'], [1, 2, 3], function ($one, $two) { return $one . '|' . $two; } );
1 <?php // Возвращает [['one', 1], ['two', 2], ['three', 3]] zip(['one', 'two', 'three'], [1, 2, 3]); // Возвращает ['one|1', 'two|2', 'three|3'] zip( ['one', 'two', 'three'], [1, 2, 3], function ($one, $two) { return $one . '|' . $two; } );