E
E
Evgenu2014-05-25 21:56:39
PHP
Evgenu, 2014-05-25 21:56:39

How to check the presence of words on the site?

There is a list of excel sites, you need to check the presence on the site (you can only analyze the main one) 1 or 2 words.
Previously visited the site ctrl+F. He wrote the right word, if he found it, he left it, if not, he deleted it.
Long, but 100% can be easily automated

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
Stepan, 2014-05-25
@Evgenu

Any freelancer will write a similar parser in 5 minutes..

L
lnked, 2014-05-26
@lnked

$content = file_get_contents('http://www.example.com/');
if (strpos( $content, 'строка' ) !== false) {
// тут делаешь что то 
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question