xmlrss-parser-voor-fok-en-tweakersnet
Gesponsorde koppelingen
PHP script bestanden
<head>
<title>Tweakers.NET Headlines</title>
</head>
<body>
Code (php)
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
/* Functies aanmaken */
function startElementFOK ($parser,$name,$attrib)
{
global $check;
global $checktitle;
global $checklink;
if ($check=='true') {
if ($name=="TITLE") {
$checktitle = 'true';
} else {
$checktitle = 'false';
}
if ($name=="LINK") {
$checklink = 'true';
} else {
$checklink = 'false';
}
}
if ($name=="ITEM") { $check = 'true'; }
}
function endElementFOK ($parser,$name)
{
global $check;
global $checktitle;
global $checklink;
if ($check=='true') {
if ($name=="TITLE") {
$checktitle = 'false';
} else {
$checktitle = 'false';
}
if ($name=="LINK") {
$checklink = 'false';
} else {
$checklink = 'false';
}
}
if ($name=="ITEM") { $check = 'false'; }
}
function characterDataFOK ($parser, $data)
{
global $check;
global $checktitle;
global $checklink;
global $linkdata;
global $i;
if ($check=="true") {
if ($checktitle=='true')
{
$linkdata = $data;
}
if ($checklink=='true')
{
if ($i<10) {
echo "<a href=\"".$data."\" class=\"link\">".$linkdata."</a><br>";
$i++;
}
}
}
}
// Starten
if (!($fp=@fopen("http://www.tweakers.net/feeds/nieuws.xml", "r")))
{
die ("Kan het XML bestand niet openen.");
}
$i=0;
if (!($xml_parser = xml_parser_create()))
{
die("De XML Parser wordt niet ondersteund.");
}
/* Gegevens verwerken */
xml_set_element_handler($xml_parser,"startElementFOK","endElementFOK");
xml_set_character_data_handler( $xml_parser, "characterDataFOK");
while( $data = fread($fp, 4096))
{
if(!xml_parse($xml_parser, $data, feof($fp)))
{
break;
}
}
/* Parser vrijgeven */
xml_parser_free($xml_parser);
?>
/* Functies aanmaken */
function startElementFOK ($parser,$name,$attrib)
{
global $check;
global $checktitle;
global $checklink;
if ($check=='true') {
if ($name=="TITLE") {
$checktitle = 'true';
} else {
$checktitle = 'false';
}
if ($name=="LINK") {
$checklink = 'true';
} else {
$checklink = 'false';
}
}
if ($name=="ITEM") { $check = 'true'; }
}
function endElementFOK ($parser,$name)
{
global $check;
global $checktitle;
global $checklink;
if ($check=='true') {
if ($name=="TITLE") {
$checktitle = 'false';
} else {
$checktitle = 'false';
}
if ($name=="LINK") {
$checklink = 'false';
} else {
$checklink = 'false';
}
}
if ($name=="ITEM") { $check = 'false'; }
}
function characterDataFOK ($parser, $data)
{
global $check;
global $checktitle;
global $checklink;
global $linkdata;
global $i;
if ($check=="true") {
if ($checktitle=='true')
{
$linkdata = $data;
}
if ($checklink=='true')
{
if ($i<10) {
echo "<a href=\"".$data."\" class=\"link\">".$linkdata."</a><br>";
$i++;
}
}
}
}
// Starten
if (!($fp=@fopen("http://www.tweakers.net/feeds/nieuws.xml", "r")))
{
die ("Kan het XML bestand niet openen.");
}
$i=0;
if (!($xml_parser = xml_parser_create()))
{
die("De XML Parser wordt niet ondersteund.");
}
/* Gegevens verwerken */
xml_set_element_handler($xml_parser,"startElementFOK","endElementFOK");
xml_set_character_data_handler( $xml_parser, "characterDataFOK");
while( $data = fread($fp, 4096))
{
if(!xml_parse($xml_parser, $data, feof($fp)))
{
break;
}
}
/* Parser vrijgeven */
xml_parser_free($xml_parser);
?>
</body>
</html>