특정 값(클래스명)이 있다면 건너뛰기 if문??
본문
-----------------------------------------
<td class="a">
안녕하세용
</td>
.
.
<td class="a">
<div class="auto">헬로우</div> <요녀석이 문제
</td>
.
.
-----------------------------------------
위에서 <td> 안에 있는 텍스트를 가져오는 중인데요
<div class="auto">가 있을 경우 그냥 건너뛰는 방법이 없을까요?
foreach ($html->find('td[class=a]') as $input) {
echo $input -> plaintext;
}
답변 1
foreach ($html->find('td[class=a]') as $input) {
if(!$input->find("div[class='auto']")->size()==0){
echo $input -> plaintext;
}
}
답변을 작성하시기 전에 로그인 해주세요.