-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxml_0001.inc.php
104 lines (104 loc) · 4.2 KB
/
xml_0001.inc.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
<?php
// ----------------------------------------------------------------------
// phpMyLib Version: 0.1.3 Release Date: 20140522
// © Copyright 2001-2024 Manu Herrán. Todos los derechos reservados
// Free download source code:
// https://manuherran.com/
// ----------------------------------------------------------------------
// Para mantener la compatibilidad entre editores de texto, en este
// fichero se utilizará para identar el espacio, y no el tabulador
// ----------------------------------------------------------------------
// parsearXML
// xml_0001_fTrimXmlText
// xml_0001_fExtractXmlBetween
// xml_0001_fXmlTable2csvFile2D
// ----------------------------------------------------------------------
function parsearXML($str_dicc_xsl, $str_xml) {
//Parsea el codigo XML $str_xml con el diccionario XSL $str_dicc_xsl y devuelve una cadena $str_out
//con el resultado
//$resultado =llamarHTTP("http://url.pl?param");
//$str_dicc_xsl = read_file("amor.xsl");
//$resultado = trim(parsearXML($str_dicc_xsl, $resultado));
//$resultado = str_replace("\n", " ", $resultado);
if (@xslt_process($str_dicc_xsl, $str_xml, $str_out)) {
return $str_out;
} else {
echo ("Transformation failed.");
echo "\tError number: " . xslt_errno() . "\n";
echo "\tError string: " . xslt_error() . "\n";
exit;
}
}
// ----------------------------------------------------------------------
function xml_0001_fTrimXmlText($xmlData, $firstTag, $lastTag) {
$ret = $xmlData;
$ret = $firstTag . str_0001_rightSideOf($ret, $firstTag);
$ret = str_0001_leftSideOf($ret, $lastTag) . $lastTag;
return $ret;
}
// ----------------------------------------------------------------------
function xml_0001_fExtractXmlBetween($xmlData, $firstTag, $lastTag) {
$ret = $xmlData;
$ret = str_0001_rightSideOf($ret, $firstTag);
$ret = str_0001_leftSideOf($ret, $lastTag);
return $ret;
}
// ----------------------------------------------------------------------
function xml_0001_fXml2DTable2csvFormat($xmlData, $AR_fieldName, $AR_defaultValue, $lineSep, $fieldSep) {
// Ejemplo de llamada:
// $AR_fieldName = Array();
// $AR_fieldName[1] = "productId";
// $AR_fieldName[2] = "productCode";
// $AR_fieldName[3] = "productName";
// $AR_fieldName[4] = "largeImage";
// $AR_defaultValue = Array();
// $AR_defaultValue[1] = "";
// $AR_defaultValue[2] = "";
// $AR_defaultValue[3] = "";
// $AR_defaultValue[4] = "";
// print xml_0001_fXml2DTable2csvFormat($xmlData2, $AR_fieldName, $AR_defaultValue, "\n", " - ");
$ret = "";
$xmlParser = xml_parser_create();
xml_parse_into_struct($xmlParser, $xmlData, $AR_val, $AR_index);
xml_parser_free($xmlParser);
$numItems = sizeof($AR_val); //count($AR_val);
$numFields = sizeof($AR_fieldName);
//print "\n\nProcesando " . $numItems . " items. Buscando " . $numFields . " campos\n";
$contRows = 0;
$lastFieldDetected = "";
for($contItem = 0; $contItem < $numItems; $contItem++){
$contField = 0;
foreach ($AR_fieldName as $fieldName) {
$contField++;
//$ret = $ret . "(" . $contField . ")";
if ($AR_val[$contItem]['tag'] == strtoupper($fieldName)) {
if ($fieldName == $lastFieldDetected) {
$ret = $ret . "|" . $AR_val[$contItem]['value'];
} else {
if ($contField > 1) {
$ret = $ret . $fieldSep;
}
if ($AR_defaultValue[$contField] == "") {
//print "c:" . $contItem . "=" . $AR_val[$contItem]['value'] . " ";
//if (defined($AR_val[$contItem]['value'])) {
$ret = $ret . $AR_val[$contItem]['value'];
//}
} else {
$ret = $ret . $AR_defaultValue[$contField];
}
if ($contField == $numFields) {
$contRows++;
//$ret = $ret . "(ENDROW" . $contRows . ")";
$ret = $ret . $lineSep;
}
}
$lastFieldDetected = $fieldName;
}
}
}
return $ret;
}
// ----------------------------------------------------------------------
// OJO NO DEJAR LINEAS EN BLANCO AL FINAL DE ESTE FICHERO
// ----------------------------------------------------------------------
?>