Скрипт разбора simplehtmldom для разрыва данных, поступающих в виде простого текста

Вот мой сценарий, в котором я беру три предмета Название лекарства, общее название, название класса. Моя проблема заключается в том, что мне удалось получить Название лекарства отдельно но Общее имя и имя класса идет как строка. Если вы запустите сценарий, вы получите лучшее представление о том, что я на самом деле пытаюсь сказать, я хочу сохранить Общее имя и имя класса это отдельные столбцы в таблице.

скрипт

<?php

error_reporting(0);

//simple html dom file
require('simple_html_dom.php');

//target url
$html = file_get_html('http://www.drugs.com/condition/atrial-flutter.html?rest=1');

//crawl td columns

foreach($html->find('td') as $element)
{
//get drug name
$drug_name = $element->find('b');
foreach($drug_name as $drug_name)
{
echo "Drug Name:-".$drug_name;

foreach($element->find('span[class=small] a',2) as $t)
{
//get the inner HTML
$data = $t->plaintext;
echo $data;
}

echo "<br/>";
}
}

?>

заранее спасибо

1

Решение

Ваш текущий код немного далек от того, что вам нужно сделать, но вы могли бы использовать селекторы CSS, чтобы упростить эти элементы.

Пример:

$data = array();
$html = file_get_html('http://www.drugs.com/condition/atrial-flutter.html?rest=1');
foreach($html->find('tr td[1]') as $td) { // you do not need to loop each td!
// target the first td of the row
$drug_name = $td->find('a b', 0)->innertext; // get the drug name bold tag inside anchor
$other_info = $td->find('span.small[2]', 0); // get the other info
$generic_name = $other_info->find('a[1]', 0)->innertext; // get the first anchor, generic name
$children_count = count($other_info->children()); // count all of the children
$classes = array();
for($i = 1; $i < $children_count; $i++) { // since you already got the first, (in position zero) iterate all children starting from 1
$classes[] = $other_info->find('a', $i)->innertext; // push it inside another container
}

$data[] = array(
'drug_name' => $drug_name,
'generic_name' => $generic_name,
'classes' => $classes,
);
}

echo '<pre>';
print_r($data);
1

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]