我正在尝试解析一些表数据,但该表没有类或固定数字,因此我尝试使用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]')
我做错了什么?