単純なHTMLテーブルで、最後の列を削除したい
<table>
<tbody>
<tr>
<th>1</th>
<th>2</th>
<th>3</th>
<th rowspan="3">I want to remove this</th>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td rowspan="3">I want to remove this</td>
</tr>
私はこのコードを使用していますが、コンテンツとthおよびtd行スパンが残っています
$myTable = preg_replace('#</?td rowspan[^>]*>#i', '', $myTable);
echo $myTable
質問:最後の列とその内容を削除するにはどうすればよいですか?