mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-03 16:43:03 +00:00
8 lines
130 B
PHP
8 lines
130 B
PHP
<?php
|
|
$array = [1, 'hello', 1, 'world', 'hello'];
|
|
$new = array_count_values($array);
|
|
|
|
echo '<pre>';
|
|
print_r($new);
|
|
echo '</pre>';
|