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

4 lines
78 B
PHP
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
<?php
print_r(array_count_values(str_split(file_get_contents($argv[1]))));
?>