Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<div> <a>abc</a> xyz </div>
上記の HTML 構造を考えると、$divElement->nodeValue「xyz」のみを取得したい場合は「abc xyz」が返されます。$divElement->getAttribute('value')空です。
$divElement->nodeValue
$divElement->getAttribute('value')
<a>要素を削除せずに「xyz」を取得するにはどうすればよいですか?
<a>