-
Notifications
You must be signed in to change notification settings - Fork 0
/
php_cURL_Nodes_003.php
executable file
·138 lines (102 loc) · 3.19 KB
/
php_cURL_Nodes_003.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php
/*
1) Vou usar a experiência que tive no NetBeans de listar os tags, trocando <br> por \n:
a) Deu certo com books e books000.xml;
2) Vou tentar com a minha página;
a) Princípio deu um erro com dist...
b)
*/
echo "Partindo do zero->Ok!\n\n";
echo "\nAbrindo arquivo XML no HD do Sevidor->Ok!\n";
$xml = new DOMDocument();
//$xml->loadHTMLFile("http://athlonxpprojeto.zapto.org");
//$xml->loadHTMLFile("http://www.uol.com.br");
//$xml->loadHTMLFile("http://www.bmfbovespa.com.br/BancoTitulosBTC/EmprestimoRegistrado.aspx?Idioma=pt-br");
$xml->loadHTMLFile("http://www.bmfbovespa.com.br");
List_all_tags($xml);
echo "\nFim\n...\n..\n.\n";
function List_all_tags($Node)
{
$items = $Node->childNodes;
foreach ($items as $item)
{
if ($item->nodeType==1)
{
//echo "tagName (" . dist_n($item) . ") => " . $item->tagName . "\n" ;
echo "nodeType_". $item->nodeType. ", tagName : " . $item->tagName;
if ($item->tagName=="a")
{
echo " _anchor at line (" .$item->getLineNo() . "): ";
if (substr_count($item->getAttribute('href'),'doPostBack')>=1)
{
echo " href(com doPostBack) -> " . $item->getAttribute('href');
}
echo " _anchor at line (" .$item->getLineNo() . "): ";
if (substr_count($item->getAttribute('href'),'www.')>=1)
{
echo " href(com Link) -> " . $item->getAttribute('href');
}
echo " _anchor at line (" .$item->getLineNo() . "): ";
if (substr_count($item->getAttribute('href'),'iframe')>=1)
{
echo " href(com iframe) -> " . $item->getAttribute('href');
}
echo " _anchor at line (" .$item->getLineNo() . "): ";
if (substr_count($item->getAttribute('href'),'aspnet')>=1)
{
echo " href(com aspnet) -> " . $item->getAttribute('href');
}
if ($item->hasAttribute('onclick'))
{
echo ", com onclick";
}
else
{
echo ", sem onclick";
}
}
echo "\n";
List_all_tags($item);
}
}
}
function conta_anchors($DOMDoc) /*Acabei não usando*/
{
echo 'Possui ' . $DOMDoc->getElementsByTagName("a")->length . " anchors.\n";
$anchs = $DOMDoc->getElementsByTagName("a");
foreach ($anchs as $anch)
{
echo "href:" . $anch->getAttribute('href') . "\n";
}
}
function n_attributes($Node)
{
$length = $a->attributes->length;
for ($i = 0; $i < $length; ++$i)
{
$name = $a->attributes->item($i)->name;
echo /*$value =*/ $a->getAttribute($name) . "\n";
//$attrs[$name] = $value;
}
}
function dist_n ($Node)
{
$dist=0;
while ($Node->parentNode->nodeType!=9)
{
$Node=$Node->parentNode;
$dist++;
}
return $dist;
}
function dist_char ($Node)
{
$dist=$Node->tagName;
while ($Node->parentNode->nodeType!=9)
{
$Node=$Node->parentNode;
$dist = $Node->tagName . "/" . $dist;
}
return "." . $dist;
}
?>