我正在使用 curl 概念并从其他网站获取描述,但描述以 aldpabetic 顺序插入,例如:
所有A在一排,所有B在一排
依此类推,但我希望所有这些都在单独的行中。请帮忙。
include('simple_html_dom.php'); // get DOM from URL or file
$html = file_get_html('animecrunch.com/';);
// find all td tags with attribite valign=top and plain text
foreach($html->find('td[valign=top]') as $e) {
$anime= htmlentities(trim($e->plaintext), ENT_NOQUOTES ,'UTF-8');
$vowels = array("!", "'");
$pureanime = str_replace($vowels, "", "$anime");
$count=mysql_num_rows($query1);
if($count==0) {
$query=mysql_query("insert into anime(anime) values('$pureanime')") or die(mysql_error());
header("location:test1.php");
}
}