// get CONTENT from united domains footer
$content = file_get_contents('http://www.uniteddomains.com/index/footer/');
// remove spaces from CONTENT
$content = preg_replace('/\s+/', '', $content);
// match all tld tags
$regex = '#target="_parent">.(.*?)</a></li><li>#';
preg_match($regex, $source, $matches);
print_r($matches);
すべてのTLDに一致させたい:
各 tld の前後にはtarget="_parent">.
、</a></li><li>
私は次のような配列になりたいと思っていますarray('africa','amsterdam','bnc'...ect ect )
ここで何が間違っていますか?
注: すべてのスペースを削除する 2 番目の手順は、単純化するためです。