RosettaCodeData/Task/Letter-frequency/PHP/letter-frequency.php

4 lines
78 B
PHP
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
<?php
print_r(array_count_values(str_split(file_get_contents($argv[1]))));
?>