Skip to content

Instantly share code, notes, and snippets.

View astf-robot's full-sized avatar

ASTF Robot astf-robot

View GitHub Profile
@astf-robot
astf-robot / synonym.php
Last active May 8, 2018 10:36
Synonyms
<?php
if ($argc < 2) {
echo "Usage ${argv[0]} WORD\n";
exit(1);
}
$html = file_get_contents('http://www.thesaurus.com/browse/' . $argv[1]);
$dom = new DOMDocument();
@$dom->loadHTML($html);