RosettaCodeData/Task/Letter-frequency/PHP/letter-frequency.php
2023-07-01 13:44:08 -04:00

3 lines
78 B
PHP

<?php
print_r(array_count_values(str_split(file_get_contents($argv[1]))));
?>