Skip to content

A tiny PHP class-based program to analyze an input file and extract all of that words and detect how many times every word is repeated. (It's not case sensitive)

License

Notifications You must be signed in to change notification settings

BaseMax/ImportantWordExtractor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Important Word Extractor

A tiny PHP class-based program to analyze an input file and extract all of that words and detect how many times every word is repeated. (It's not case sensitive)

Purpose

If you want to learn a new language and need to know the most used words in a language. you can get help from this program to detect how many times each word is repeated and sort the most used words. finally you are able to get an export report to know important words.

Using

<?php
require "extractor.php";

$extractor = new WordExtractor("input.txt");
$res = $extractor->extract();
print_r($res);
$extractor->saveFile($res);

© Copyright 2021, Max Base

About

A tiny PHP class-based program to analyze an input file and extract all of that words and detect how many times every word is repeated. (It's not case sensitive)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages