Jacek Kowalski
2012-06-23 8bd4d9f5065a5b94dc83f0ed6859ed0d93c75d84
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
echo STAR.'Pobieranie danych...';
$humor = @file_get_contents('http://ddserv.vsdsoftware.pl/eksport/');
 
if(!$humor) {
    echo FAIL;
    return FALSE;
}
 
echo OK;
echo STAR.'Sprawdzanie formatu odpowiedzi...';
 
if(strpos($humor, '<img src="')!==FALSE) {
    preg_match('/\<img src=\"(.*)\" border/', $humor, $humor);
    $humor = $humor[1];
    
    echo ' obrazek'.OK;
    echo STAR.'Pobieranie obrazka...';
    
    $img = @file_get_contents($humor);
    if(!$img) {
        echo FAIL;
        return FALSE;
    }
    
    @unlink('humor.txt');
    file_put_contents('./humor.jpg', $img);
    file_put_contents('./archiwum/'.date('j.m.Y').'.jpg', $img);
    
    echo OK;
    return FALSE;
}
elseif(strpos($humor, '<td class="text">')!==FALSE)
{
    echo ' tekst'.OK;
    echo STAR.'Zapisywanie odpowiedzi';
    $humor = explode('<td class="text">', $humor);
    $humor = explode('</td>', $humor[1]);
    $humor = strip_tags(str_replace('<br>', "\n", $humor[0]));
}
else
{
    echo FAIL;
    return FALSE;
}
 
$humor = trim($humor);
 
if(empty($humor)) {
    echo FAIL;
    return FALSE;
}
 
$humor = iconv('iso-8859-2', 'utf-8', $humor);
 
file_put_contents('./humor.txt', $humor);
file_put_contents('./archiwum/'.date('j.m.Y').'.txt', trim($humor));
 
echo OK;
?>