Birisi bu nodeValue ne olduğunu açıklamak bana ve benzeyebilir veya nodeValue ne var yazmak nodeValue nasıl yazabilir miyim? EDIT: Sorry! Yes, this is PHP.
Ve ..
foreach ($elements as $e) {
echo $e->nodeValue;
}
(->) Ok şeysi ne demek? Bu bir dizi haklı? Bunu bana bir bölümünü açıklayabilir eğer iyi olurdu ki ...
İşte kaynak bulunuyor:
$html = file_get_contents('http://website.com/');
$dom = new DOMDocument();
@$dom->loadHTML($html);
$xPath = new DOMXPath($dom);
$elements = $xPath->query("//*[@id='announcement']");
foreach ($elements as $e) {
echo $e->nodeValue;
}
Update: I thought I'll write out the question here instead of leaving it in comments. Let's say I had 5 node values found and what if I just wanted to echo the 2nd node value? How would I do that? echo $e->nodeValue2;?