XML Feed位于:http://xml.betclick.com/odds_fr.xml
我需要一个php循环来回显匹配的名称,小时,投注选项和赔率链接。 该功能将仅选择并显示当天匹配的流量=“1”和投注类型“Ftb_Mr3”。
我是xpath和simplexml的新手。
提前致谢。
到目前为止,我有:
<?php
$xml_str = file_get_contents("http://xml.betclick.com/odds_fr.xml");
$xml = simplexml_load_string($xml_str);
// need xpath magic
$xml->xpath();
// display
?>
答案 0 :(得分:3)
一旦掌握了它,Xpath就非常简单了
你基本上想要获得具有特定属性的每个匹配标记
//match[@streaming=1]
将完美地工作,它从父标记下面获取每个匹配标记,其中属性streaming等于1
我刚刚意识到你也想要一个投注类型为“Ftb_Mr3”的匹配
//match[@streaming=1]/bets/bet[@code="Ftb_Mr3"]
这将返回投注节点,我们想要匹配,我们知道是祖父母
//match[@streaming=1]/bets/bet[@code="Ftb_Mr3"]/../..
这两个点就像在文件路径中一样工作,并获得匹配。
现在将其添加到您的示例中只需将最后一位更改为
// need xpath magic
$nodes = $xml->xpath('//match[@streaming=1]/bets/bet[@code="Ftb_Mr3"]/../..');
foreach($nodes as $node) {
echo $node['name'].'<br/>';
}
打印所有匹配名称。
答案 1 :(得分:1)
我真的不知道如何使用xpath,但是如果你想'循环',这应该让你开始:
<?php
$xml = simplexml_load_file("odds_fr.xml");
foreach ($xml->children() as $child)
{
foreach ($child->children() as $child2)
{
foreach ($child2->children() as $child3)
{
foreach($child3->attributes() as $a => $b)
{
echo $a,'="',$b,"\"</br>";
}
}
}
}
?>
这会让你进入具有'streaming'属性的'match'标签。我也不知道那天的'匹配'是什么,但是......
它基本上是出于w3c参考: http://www.w3schools.com/PHP/php_ref_simplexml.asp
答案 2 :(得分:0)
我在项目中使用它。 Scraping Beclic赔率:
<?php
$match_csv = fopen('matches.csv', 'w');
$bet_csv = fopen('bets.csv', 'w');
$xml = simplexml_load_file('http://xml.cdn.betclic.com/odds_en.xml');
$bookmaker = 'Betclick';
foreach ($xml as $sport) {
$sport_name = $sport->attributes()->name;
foreach ($sport as $event) {
$event_name = $event->attributes()->name;
foreach ($event as $match) {
$match_name = $match->attributes()->name;
$match_id = $match->attributes()->id;
$match_start_date_str = str_replace('T', ' ', $match->attributes()->start_date);
$match_start_date = strtotime($match_start_date_str);
if (!empty($match->attributes()->live_id)) {
$match_is_live = 1;
} else {
$match_is_live = 0;
}
if ($match->attributes()->streaming == 1) {
$match_is_running = 1;
} else {
$match_is_running = 0;
}
$match_row = $match_id . ',' . $bookmaker . ',' . $sport_name . ',' . $event_name . ',' . $match_name . ',' . $match_start_date . ',' . $match_is_live . ',' . $match_is_running;
fputcsv($match_csv, explode(',', $match_row));
foreach ($match as $bets) {
foreach ($bets as $bet) {
$bet_name = $bet->attributes()->name;
foreach ($bet as $choice) {
// team numbers are surrounded by %, we strip them
$choice_name = str_replace('%', '', $choice->attributes()->name);
// get the float value of odss
$odd = (float)$choice->attributes()->odd;
// concat the row to be put to csv file
$bet_row = $match_id . ',' . $bet_name . ',' . $choice_name . ',' . $odd;
fputcsv($bet_csv, explode(',', $bet_row));
}
}
}
}
}
}
fclose($match_csv);
fclose($bet_csv);
?>
然后将csv文件加载到mysql中。每分钟运行一次,到目前为止效果很好。