我正在尝试解析一些表数据,但该表没有类或固定数字,所以我试图通过使用该next_sibling()
方法来捕获它。
但是,如果我找到一个标准表,它会返回 null。我在我的代码中犯了错误吗?
<table class="prettytable mx-auto rounded text-center">
这是我想找到的那条线。
我尝试了这两个代码:
$html_pokemon->find('table.prettytable.mx-auto.rounded.text-center')
$html_pokemon->find('table[class=prettytable mx-auto rounded text-center]')
我做错了什么?