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
Hi,
I´m trying to get the row´s css-Classes from this small html-snippet:
<div class="club-matches"> <table class="table"> <tbody> <tr class="row-mainInfo"> <td colspan="6">Samstag, 26.08.2017 - 18:00 Uhr | CS:GO | Friendly</td> </tr>
my current code:
foreach($html('div.club-matches table tbody tr') as $index => $row) { echo $index; echo $row->class; echo $row->getPlainText(), "<br>\n"; }
My Problem: I can display the PlainText from each row - but not its css-Class.. what´s wrong with my code?
** edit: When I do an
var_dump($row->attributes);
I get
array(1) { ["class"]=> string(26) "row-mainInfo"
}
The text was updated successfully, but these errors were encountered:
I also ran into this and had to resort to pulling it out of the attributes. It works, but definitely seems like a bug. This should work, I think:
foreach($html('div.club-matches table tbody tr') as $index => $row) { $class = ''; if ( isset( $row->attributes['class'] ) ) { $class = $row->attributes['class']; } echo $index; echo $class; echo $row->getPlainText(), "<br>\n"; }
Sorry, something went wrong.
No branches or pull requests
Hi,
I´m trying to get the row´s css-Classes from this small html-snippet:
my current code:
My Problem: I can display the PlainText from each row - but not its css-Class.. what´s wrong with my code?
** edit:
When I do an
I get
}
The text was updated successfully, but these errors were encountered: