simple_html_dom を使用して、内部テキスト値が「使用」のすべての td を取得しようとしています。運が悪いので、次のことを試しました。
php
if($input = $row->find('td[value^=used]',10)){
echo $input;
}
html
<table>
<tr>
<td>status</td>
<td>condition</td>
<td>new</td>
<td>used</td>
<td>used</td>
<td>new</td>
<td>used</td>
<td>new</td>
<td>used</td>
</tr>
</table>