我试图从外部网站获取产品数据并将其插入特殊表格中 - 每个找到的节点元素都需要在产品表格中的产品的相应列中导入!
它可以很好地找到1个产品属性并将其插入表中:
$product_names = $xpath->query("//div[contains(concat(' ', normalize-space(@class), ' '), ' product_description ')]/div/h3/a");
if (!is_null($product_names)) {
foreach ($product_names as $product_name) {
$nodes = $product_name->childNodes;
foreach ($nodes as $node) {
$import_product = 'INSERT INTO product_table (id, product_name) values ("","' . preg_replace('~\\s+\\S+$~', "", strip_tags(trim($node->nodeValue))) . '")';
mysql_query($import_supralift_name);
}
}
}
但是产品有很多属性,所以,我试图获得这个产品属性(在1个html元素中,所以我需要将它分成数组,用于不同的属性):
$types = $xpath->query("//div[contains(concat(' ', normalize-space(@class), ' '), ' product_description ')]/div/a/p");
if (!is_null($types)) {
foreach ($types as $type) {
$nodes = $type->childNodes;
foreach ($nodes as $node) {
list($typee,$power_unit) = explode(' / ', $node->nodeValue);
$import_type = 'INSERT INTO product_table (id, type, power_unit) values ("", "' . strip_tags(trim($typee)) . '", "' . strip_tags(trim($power_unit)) . '")';
mysql_query($import_type);
}
}
}
简而言之 - 我需要从外部网站获取3个产品属性(当然,他们还有更多,只想弄清楚什么才是最好的解决方案)并将其插入到我的数据中基数如:
product_name_1 product_type_1 $power_unit_1
...
product_name_X product_type_X $power_unit_X
到目前为止,我试图将第二个xpath部分放在第一个foreach中,但它不能正常工作...... 我是否应该尝试使用xpath节点创建数组(例如$ prodcuts = array(firstXpathNode,secondXpathNode等)并以这种方式工作,或者有更好更正确的解决方案吗?
提前 - TXN获取任何提示......
EDITED: 以下是我尝试获取数据的示例HTML,这是针对产品的(每个产品都有此html用于显示数据):
<div class="single_product">
<div data-section="featured_image">
<a title="Unique_String" href="#">
<div style="" data-section="image" class="image_in_fixed_ratio_wrapper">
<div class="inner visible">
<img alt="Unique_String" src="image1.jpg" class="" style="">
</div>
</div>
</a>
</div>
<div data-section="data">
<div class="product_description">
<div data-field="description_detail">
<h3><a title="Unique_String" href="#">Product Name<div class="donotwantthistoinclude">New</div></a></h3>
<a title="Unique_String" href="#"><p>Product Type / Product Power Unit</p></a>
<div data-field="price">
<a title="Unique_String" href="#">5,000</a>
</div>
<div data-field="description">
<a title="Unique_String" href="#">
<span>Height (mm)</span> 2344
|
<span>Other attribute 1</span> Duplex
|
<span>Other attribute 2 (kg)</span> 1400
|
<span>Other attribute 3</span> 2014
| <span>Other attribute X (h)</span> 772
<br><span>Location</span> D - 85716
</a>
</div>
</div>
</div>
</div>
</div>
答案 0 :(得分:2)
如果将第一个foreach
中的产品名称分离为变量,则可以根据产品名称构建相对XPATH。我假设产品名称在页面上是唯一的。然后第二个XPATH在页面上找到产品名称,然后向下走一些元素。现在,保证会有更好的XPATH查询来编写,我只是没有自己的技能水平,但我确实给你一种方法来做到这一点。
因此流程将类似于:
为每个产品,获取名称,在新查询中插入名称以获取特定产品的类型和功率单位,解析变量,插入数据库。
您正在使用危险且过时的SQL。请使用较新的mysqli_ *或PDO库使用预准备语句访问数据库。我没有更新您的代码以反映这一点,谷歌很容易。
但我在现有SQL中插入product_name
来说明如何收集所有3个字段。
$product_names = $xpath->query("//div[contains(concat(' ', normalize-space(@class), ' '), ' product_description ')]/div/h3/a");
if (!is_null($product_names)) {
foreach ($product_names as $product_name) {
$nodes = $product_name->childNodes;
foreach ($nodes as $node) {
$productName = preg_replace('~\\s+\\S+$~', "", strip_tags(trim($node->nodeValue)));
$xpath_relative = sprintf("//div[contains(concat(' ', normalize-space(@class), ' '), ' product_description ')]/div/h3/a[contains(text(),'%s')]/../../a/p",$productName);
$types = $xpath->query($xpath_relative);
if (!is_null($types)) {
foreach ($types as $type) {
$types_nodes = $type->childNodes;
foreach ($types_nodes as $type_node) {
list($typee,$power_unit) = explode(' \'', $type_node->nodeValue);
// WARNING!!! SQL INJECTION BELOW!!!
$import_type = 'INSERT INTO product_table (id, type, power_unit, product_name) values ("", "' . strip_tags(trim($typee)) . '", "' . strip_tags(trim($power_unit)) . '", "' . $product_name . '")';
mysql_query($import_type);
}
}
}
}
}
}
我已经使用你的代码并在PHP小提琴中使用它运行以下结果。我还根据提供的结构优化了XPATH查询,并提供了使用PDO的建议。只需根据需要填写更多属性。我将给你留下完整的代码,包括我用过的DOM和XPATH初始化,你可以自己动手。
<pre><?php
$domDoc = <<<EOF
<div class="single_product">
<div data-section="featured_image">
<a title="Unique_String" href="#">
<div style="" data-section="image" class="image_in_fixed_ratio_wrapper">
<div class="inner visible">
<img alt="Unique_String" src="image1.jpg" class="" style="" />
</div>
</div>
</a>
</div>
<div data-section="data">
<div class="product_description">
<div data-field="description_detail">
<h3><a title="Unique_String" href="#">Product Name<div class="donotwantthistoinclude">New</div></a></h3>
<a title="Unique_String" href="#"><p>Product Type / Product Power Unit</p></a>
<div data-field="price">
<a title="Unique_String" href="#">5,000</a>
</div>
<div data-field="description">
<a title="Unique_String" href="#">
<span>Height (mm)</span> 2344
|
<span>Other attribute 1</span> Duplex
|
<span>Other attribute 2 (kg)</span> 1400
|
<span>Other attribute 3</span> 2014
| <span>Other attribute X (h)</span> 772
<br /><span>Location</span> D - 85716
</a>
</div>
</div>
</div>
</div>
</div>
EOF;
$dom = new DomDocument();
$dom->loadXML($domDoc);
$xpath = new DomXPath($dom);
$products = [];
$productUniqueQuery = "//div[@data-field='description_detail']/h3/a/@title";
$productUniqueNodes = $xpath->query($productUniqueQuery);
if (!is_null($productUniqueNodes)) {
foreach ($productUniqueNodes as $productUniqueNode) {
$product = [];
$product["unique"] = $productUniqueNode->nodeValue;
$productNameQuery = sprintf("//h3/a[@title='%s']/text()",$product["unique"]);
$productNameNodes = $xpath->query($productNameQuery);
$product["name"] = $productNameNodes[0]->nodeValue;
$productImageQuery = sprintf("//img[@alt='%s']/@src",$product["unique"]);
$productImageNodes = $xpath->query($productImageQuery);
$product["imageURL"] = $productImageNodes[0]->nodeValue;
$productTypeQuery = sprintf("//a[@title='%s']/p/text()",$product["unique"]);
$productTypeNodes = $xpath->query($productTypeQuery);
list($product["type"], $product["powerUnit"]) = explode(" / ", $productTypeNodes[0]->nodeValue);
$productDescriptionQuery = sprintf("//div[@data-field='description']/a[@title='%s']/child::node()",$product["unique"]);
$productDescriptionNodes = $xpath->query($productDescriptionQuery);
$description = "";
foreach ($productDescriptionNodes as $productDescriptionNode) {
$nodeText = preg_replace("/\s*\|/","",trim($productDescriptionNode->nodeValue));
if($nodeText == "" || $productDescriptionNode->nodeType === 3){
continue;
}
$product[$nodeText] = preg_replace("/\s*\|/","",trim($productDescriptionNode->nextSibling->nodeValue));
}
$products[$product["unique"]] = $product;
}
}
try {
$db = new PDO("mysql:host=HOST;dbname=DBNAME;port=3306","USERNAME", "PASSWORD");
}
catch(PDOException $e){
echo "Connection failed: " . $e->getMessage();
exit();
}
$sql = 'INSERT INTO product_table (unique, name, type, power_unit, attr1) values (:unique, :name, :type, :power_unit, :attr1)';
$stmt = $db->prepare($sql);
foreach($products as $product){
$params = [
":unique"=>$product["unique"],
":name"=>$product["name"],
":type"=>$product["type"],
":power_unit"=>$product["powerUnit"],
":attr1"=>$product["Other attribute 1"]
];
var_dump($product);
$stmt->execute($params);
}
?>
</pre>
答案 1 :(得分:2)
使用XPath时,可以做的一件事就是使用XPath,您可以使用一个节点作为进一步搜索的上下文,因此,一旦您有了产品节点列表,请将其用作提取其他数据。
就像一个例子......
$dom = new DomDocument();
$dom->loadXML($xml);
$xpath = new DomXPath($dom);
$products = [];
$data = $xpath->query("//div[@class='single_product']");
foreach ($data as $item) {
$name = $xpath->evaluate('string(descendant::div[@data-field="description_detail"]/h3/a/@title)'
,$item);
$imageName = $xpath->evaluate('string(descendant::div[@data-section="featured_image"]//img/@src)'
,$item);
$typePower = $xpath->evaluate('string(descendant::div[@data-field="description_detail"]/a/p/text())'
,$item);
$description = $xpath->evaluate('string(descendant::div[@data-field="description"]/a)'
,$item);
$products[$name] = array( "image" => $imageName,
"typePower" => $typePower,
"description" => $description
);
}
print_r($products);
请注意evaluate()
方法的第二个参数,该方法是第一个query()
的节点。
我还使用了evaluate
,它允许我立即将节点作为字符串返回而无需进一步转换(它允许我使用string()
作为查询的一部分)。
没有后期处理,因此您可能需要整理一些数据并且没有数据库访问权限(您应该遵循使用预准备语句的示例),但这显示了提取数据的重要部分。第一名。