mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +00:00
8 lines
138 B
PHP
8 lines
138 B
PHP
<?php
|
|
$arr = ['a', 'b', 'c', 'd', 'e'];
|
|
|
|
echo '<pre>';
|
|
print_r(array_chunk($arr, 2));
|
|
print_r(array_chunk($arr, 2, true));
|
|
echo '</pre>';
|