- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Cod produs (Part number) > original5014702023309 cl-6ren">
您好,我想提取文本并将其插入数据库表中这是产品描述的代码
> <table class="AttrDTable"><!--@HeaderPlacehoder--><tr
> class="AttrDRow"><td class="AttrDTypeName">Cod produs (Part number)
> original</td><td class="AttrDValue">5014702023309</td></tr><tr
> class="AttrDAltRow"><td class="AttrDTypeName">Nume produs</td><td
> class="AttrDValue">Pricing gun, single row (8 numeric characters),
> black</td></tr><tr class="AttrDRow"><td
> class="AttrDTypeName">Producator</td><td class="AttrDValue">Avery
> Zweckform</td></tr><tr class="AttrDAltRow"><td
> class="AttrDTypeName">Clasa produsului</td><td
> class="AttrDValue">Aparatură pentru
> birou</td></tr></td></tr><!--@FooterPlacehoder--></table>
我只对 <td class="AttrDTypeName">
中的值感兴趣和<td class="AttrDValue">
我将把这些值输入数据库
我用 <br>
制作了 html和<strong>
值这是代码
$rand=explode("<br>",$descriere);
for ($i=0;$i<count($rand);$i++)
if ($rand[$i]!='')
{
$element=explode(": </strong>",$rand[$i]);
$element[0]=str_replace("<strong>","",$element[0]);
$element[1]=str_replace(" ","",$element[1]);
echo $element[0]."---".$element[1]."##"."<br>";
$exista=mysqli_query($conexiune, "SELECT * FROM oc_attribute_description WHERE name='".$element[0]."'") or die(mysqli_error($conexiune));
if (!mysqli_num_rows($exista))
{
mysqli_query($conexiune, "INSERT INTO oc_attribute (attribute_group_id) VALUES ('4')");
$id_attr=mysqli_insert_id($conexiune);
//inserez descriere atribut nou in tabela
mysqli_query($conexiune, "INSERT INTO oc_attribute_description (attribute_id, language_id, name) VALUES ('".$id_attr."', '2', '".$element[0]."')") or die(mysqli_error($conexiune));
}
$atribut=mysqli_fetch_array(mysqli_query($conexiune, "SELECT attribute_id FROM oc_attribute_description WHERE name='".$element[0]."'"));
$exista2=mysqli_query($conexiune, "SELECT * FROM oc_product_attribute WHERE product_id='".$product_id."' AND attribute_id='".$atribut[0]."'") or die(mysqli_error($conexiune));
if (!mysqli_num_rows($exista2))
{
mysqli_query($conexiune, "INSERT INTO oc_product_attribute (product_id, attribute_id, language_id, text) VALUES ('".$product_id."', '".$atribut[0]."', '2', '".$element[1]."')") or die(mysqli_error($conexiune));
}
else
mysqli_query($conexiune, "UPDATE oc_product_attribute SET text='".$element[1]."' WHERE product_id='".$product_id."' AND attribute_id='".$atribut[0]."'") or die(mysqli_error($conexiune));
}
谢谢
最佳答案
您可以使用简单的 html dom。它是最简单、最快的 php dom 提取器。我在这里根据您的要求编写一些代码。我假设您的 html 包含数据位于 uss.html 中。所以,这是一个简单的代码
include 'simple_html_dom.php';
$html = new simple_html_dom();
$html = file_get_html("uss.html");
$data = $html->find('td[class=AttrDTypeName]');
$data1 = $html->find('td[class=AttrDValue]');
echo "Your data from, td class="AttrDTypeName"<br><br>";
foreach($data as $val)
{
echo $val->innertext."<br><br>";
}
echo "Your data from, td class="AttrDValue"<br><br>"
foreach($data1 as $val1)
{
echo $val1->innertext."<br><br>";
}
关于php - 使用 php mysql 从 html 表中提取值(文本),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40263109/
这个问题在这里已经有了答案: final keyword in method parameters [duplicate] (9 个回答) 关闭 8 年前。 在此示例中,声明 Object fina
我的目标:是通过我的函数更新字段获取选定值并使用函数输出值运行它。 问题:当我从列表中选择值时,它不会触发函数,也不会更新字段。 感谢您的帮助。 HTML 12 14 16 18 20 22 24
我有一本具有这种形式的字典: myDict = {'foo': bar, 'foobar baz': qux} 现在,我想拆分字典键中的空格,使其成为下一个键并获取值(重复)。 myDictRev1
vector a; vector b; int temp_holder; cout > temp_holder) a.push_back(temp_holder); cout > temp_h
Java 的开发过程中免不了与 Date 类型纠缠,准备总结一下项目经常使用的日期相关操作,JDK 版本 1.7,如果能够帮助大家节约那么几分钟起身活动一下,去泡杯咖啡,便是极好的,嘿嘿。当然,我
我正在使用 jquery ui 日期选择器来获取 fromDate 和 toDate 以下是from日期的代码 $("#from_date").datepicker({
我是一名优秀的程序员,十分优秀!