Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

rastreando uma página html usando php?


Expressões regulares funcionam bem.
$page = // get the page
$page = preg_split("/\n/", $page);
for ($text in $page) {
    $matches = array();
    preg_match("/^<td>(.*)<\/td>$/", $text, $matches);
    // insert $matches[1] into the database
}

Consulte a documentação para preg_match.