ManCuniAn
Мастер
- Регистрация
- 5 Фев 2009
- Сообщения
- 269
- Реакции
- 32
- Автор темы
- #1
В Cron прописываю:/usr/bin/php/ /home/andro1ds/andro1ds.ru/http/9/twitter.php
скрипт:
txt-файл прописываю 666...в Crone выбираю нужного владельца....В строке браузера работает...При кроне ничего не изменяется...Путь до php правильный...Администрация не помогает...Что не так?помогите
скрипт:
Код:
<?php
$usernames = "xxxx";
$limit = "5";
$prefix = "";
$prefix_sub = "";
$wedge = "";
$suffix_sub = "<br>";
$suffix = "";
function parse_feed($usernames, $limit, $prefix_sub, $wedge, $suffix_sub) {
$usernames = str_replace(" ", "+OR+from%3A", $usernames);
$feed = "http://search.twitter.com/search.atom?q=from%3A" . $usernames . "&rpp=" . $limit;
$feed = file_get_contents($feed);
$feed = str_replace("&", "&", $feed);
$feed = str_replace("<", "<", $feed);
$feed = str_replace(">", ">", $feed);
$clean = explode("<entry>", $feed);
$amount = count($clean) - 1;
for ($i = 1; $i <= $amount; $i++) {
$entry_close = explode("</entry>", $clean[$i]);
$clean_content_1 = explode("<content type=\"html\">", $entry_close[0]);
$clean_content = explode("</content>", $clean_content_1[1]);
echo $prefix_sub;
$file = "1.txt";
$fh = fopen($file, "a+");
if (strpos(file_get_contents("1.txt"), iconv('utf-8','windows-1251', html_entity_decode($clean_content[0], ENT_NOQUOTES, 'utf-8')))==FALSE)
{
fputs($fh,iconv('utf-8','windows-1251', html_entity_decode($clean_content[0], ENT_NOQUOTES, 'utf-8'))."\r\n");
}
fclose($fh);
}
}
echo $prefix;
parse_feed($usernames, $limit, $prefix_sub, $wedge, $suffix_sub);
echo $suffix;
?>