どのようにしてこのループを制限して6つの値しか得られないのですか?ループのうちこのループを特定の番号に制限するにはどうすればよいですか?
$countries = array();
foreach ($my_data as $node)
{
foreach($node->getElementsByTagName('a') as $href)
{
$countries[] = strip_tags(trim($href->nodeValue));
}
}
あなたのgetElementsByTagName( 'A')は、PHPの関数でいますか?どこを定義しましたか? –
@Eric ['DOMDocument :: getElementsByTagName'](http://php.net/manual/en/domdocument.getelementsbytagname.php) – lonesomeday