Skip to content

Within this repository, you will find a compilation of the most vulgar words and phrases recognized in human language. Strictly intended for educational purposes, use discretion and responsibility when engaging with the content herein.

Notifications You must be signed in to change notification settings

StilinskiCyril/profanewords

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

profanewords

1). Download the json file 2). Read the file and store the contents in your database 3). Here's an example using PHP

    $file = file_get_contents(storage_path('path to file'));
    $profaneWords = json_decode($file, true);

    foreach ($profaneWords as $words) {
        foreach ($words as $item){
            $valueToStore = $item['word'];
            // TODO enter query to insert the values in your database table
        }
    }

About

Within this repository, you will find a compilation of the most vulgar words and phrases recognized in human language. Strictly intended for educational purposes, use discretion and responsibility when engaging with the content herein.

Topics

Resources

Stars

Watchers

Forks