We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From querypath created by gordielachance: technosophos/querypath#205
On an item node like this one,
<item> <artist> <name>Niagara</name> </artist> <name>Pendant que les champs brûlent</name> </item>
$node->find('> name');
gets those nodes
<name>Niagara</name> <name>Pendant que les champs brûlent</name>
while it should only get this one
<name>Pendant que les champs brûlent</name>
Is that a bug ?
I could use
$node->children('name');
But I want to be able to select NOT only direct descendants.
How could I do ? Thanks.
The text was updated successfully, but these errors were encountered:
Has this been fixed / improved since then?
Sorry, something went wrong.
No branches or pull requests
From querypath created by gordielachance: technosophos/querypath#205
On an item node like this one,
$node->find('> name');
gets those nodes
while it should only get this one
Is that a bug ?
I could use
$node->children('name');
But I want to be able to select NOT only direct descendants.
How could I do ?
Thanks.
The text was updated successfully, but these errors were encountered: